VMManager: Only warning for audio if async mix is used

This commit is contained in:
Stenzek 2022-12-30 20:52:15 +10:00 committed by refractionpcsx2
parent 9bca1946ed
commit 6e1011f18a
1 changed files with 2 additions and 2 deletions

View File

@ -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)