mirror of https://github.com/PCSX2/pcsx2.git
VMManager: Only warning for audio if async mix is used
This commit is contained in:
parent
9bca1946ed
commit
6e1011f18a
|
@ -1896,8 +1896,8 @@ void VMManager::WarnAboutUnsafeSettings()
|
||||||
messages += ICON_FA_COMPACT_DISC " Fast CDVD is enabled, this may break games.\n";
|
messages += ICON_FA_COMPACT_DISC " Fast CDVD is enabled, this may break games.\n";
|
||||||
if (EmuConfig.Speedhacks.EECycleRate != 0 || EmuConfig.Speedhacks.EECycleSkip != 0)
|
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";
|
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)
|
if (EmuConfig.SPU2.SynchMode == Pcsx2Config::SPU2Options::SynchronizationMode::ASync)
|
||||||
messages += ICON_FA_VOLUME_MUTE " Audio is not using time stretch synchronization, this may break FMVs.\n";
|
messages += ICON_FA_VOLUME_MUTE " Audio is using async mix, expect desynchronization in FMVs.\n";
|
||||||
if (EmuConfig.GS.UpscaleMultiplier < 1.0f)
|
if (EmuConfig.GS.UpscaleMultiplier < 1.0f)
|
||||||
messages += ICON_FA_TV " Upscale multiplier is below native, this will break rendering.\n";
|
messages += ICON_FA_TV " Upscale multiplier is below native, this will break rendering.\n";
|
||||||
if (EmuConfig.GS.HWMipmap != HWMipmapLevel::Automatic)
|
if (EmuConfig.GS.HWMipmap != HWMipmapLevel::Automatic)
|
||||||
|
|
Loading…
Reference in New Issue