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)