From 6e1011f18aebb36d9afab50f0868531687885408 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 30 Dec 2022 20:52:15 +1000 Subject: [PATCH] VMManager: Only warning for audio if async mix is used --- pcsx2/VMManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index d471f70ec7..b898c9c6aa 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -1896,8 +1896,8 @@ void VMManager::WarnAboutUnsafeSettings() messages += ICON_FA_COMPACT_DISC " Fast CDVD is enabled, this may break games.\n"; if (EmuConfig.Speedhacks.EECycleRate != 0 || EmuConfig.Speedhacks.EECycleSkip != 0) messages += ICON_FA_TACHOMETER_ALT " Cycle rate/skip is not at default, this may crash or make games run too slow.\n"; - if (EmuConfig.SPU2.SynchMode != Pcsx2Config::SPU2Options::SynchronizationMode::TimeStretch) - messages += ICON_FA_VOLUME_MUTE " Audio is not using time stretch synchronization, this may break FMVs.\n"; + if (EmuConfig.SPU2.SynchMode == Pcsx2Config::SPU2Options::SynchronizationMode::ASync) + messages += ICON_FA_VOLUME_MUTE " Audio is using async mix, expect desynchronization in FMVs.\n"; if (EmuConfig.GS.UpscaleMultiplier < 1.0f) messages += ICON_FA_TV " Upscale multiplier is below native, this will break rendering.\n"; if (EmuConfig.GS.HWMipmap != HWMipmapLevel::Automatic)