diff --git a/rpcs3/Emu/Cell/Modules/cellAudio.cpp b/rpcs3/Emu/Cell/Modules/cellAudio.cpp index 7def28d0aa..372ee955d4 100644 --- a/rpcs3/Emu/Cell/Modules/cellAudio.cpp +++ b/rpcs3/Emu/Cell/Modules/cellAudio.cpp @@ -283,7 +283,7 @@ u64 audio_ringbuffer::update() { if (!new_playing) { - cellAudio.error("Audio backend stopped unexpectedly, likely due to a buffer underrun"); + cellAudio.warning("Audio backend stopped unexpectedly, likely due to a buffer underrun"); flush(); playing = false; diff --git a/rpcs3/Emu/RSX/rsx_cache.h b/rpcs3/Emu/RSX/rsx_cache.h index c94ba4a54b..92aa738eb1 100644 --- a/rpcs3/Emu/RSX/rsx_cache.h +++ b/rpcs3/Emu/RSX/rsx_cache.h @@ -458,7 +458,7 @@ namespace rsx { ref_cnt++; - Emu.CallAfter([&]() + Emu.CallAfter([&, index, processed, entry_count]() { const char *text = index == 0 ? "Loading pipeline object %u of %u" : "Compiling pipeline object %u of %u"; dlg->ProgressBarSetMsg(index, fmt::format(text, processed, entry_count)); @@ -470,7 +470,7 @@ namespace rsx { ref_cnt++; - Emu.CallAfter([&]() + Emu.CallAfter([&, index, value]() { dlg->ProgressBarInc(index, value); ref_cnt--; @@ -481,7 +481,7 @@ namespace rsx { ref_cnt++; - Emu.CallAfter([&]() + Emu.CallAfter([&, index, limit]() { dlg->ProgressBarSetLimit(index, limit); ref_cnt--;