From aeeceb7d0bdf027ffdcf1d3716705a0c04ee7e8a Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 31 Jan 2021 21:38:07 +0300 Subject: [PATCH] Minor fixups --- Utilities/JIT.cpp | 1 + rpcs3/Emu/Cell/Modules/cellAudio.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Utilities/JIT.cpp b/Utilities/JIT.cpp index 28c3545a37..1c7373d1df 100644 --- a/Utilities/JIT.cpp +++ b/Utilities/JIT.cpp @@ -229,6 +229,7 @@ asmjit::Runtime& asmjit::get_global_runtime() if (!p || m_pos > m_max) [[unlikely]] { *dst = nullptr; + jit_log.fatal("Out of memory (static asmjit)"); return asmjit::kErrorNoVirtualMemory; } diff --git a/rpcs3/Emu/Cell/Modules/cellAudio.cpp b/rpcs3/Emu/Cell/Modules/cellAudio.cpp index 896c553fed..5f45ac10ad 100644 --- a/rpcs3/Emu/Cell/Modules/cellAudio.cpp +++ b/rpcs3/Emu/Cell/Modules/cellAudio.cpp @@ -188,7 +188,7 @@ void audio_ringbuffer::enqueue(const float* in_buffer) const bool success = backend->AddData(buf, AUDIO_BUFFER_SAMPLES * cfg.audio_channels); if (!success) { - cellAudio.error("Could not enqueue buffer onto audio backend. Attempting to recover..."); + cellAudio.warning("Could not enqueue buffer onto audio backend. Attempting to recover..."); flush(); return; }