actually rename that setting

This commit is contained in:
Nadia Holmquist Pedersen
2023-06-24 16:34:23 +02:00
parent 74b166cba3
commit 4b32fb802c
9 changed files with 26 additions and 26 deletions

View File

@ -674,10 +674,10 @@ void Reset()
degradeAudio = false;
}
int bitrate = Platform::GetConfigInt(Platform::AudioBitrate);
if (bitrate == 1) // Always 10-bit
int bitDepth = Platform::GetConfigInt(Platform::AudioBitDepth);
if (bitDepth == 1) // Always 10-bit
degradeAudio = true;
else if (bitrate == 2) // Always 16-bit
else if (bitDepth == 2) // Always 16-bit
degradeAudio = false;
SPU::SetDegrade10Bit(degradeAudio);