Changed sound volume config settings to init to the proper 255 max (not 256).

This commit is contained in:
mjbudd77 2021-05-19 22:28:50 -04:00
parent d3f25269c8
commit 092fc97078
1 changed files with 5 additions and 5 deletions

View File

@ -445,11 +445,11 @@ InitConfig()
// sound options
config->addOption('s', "sound", "SDL.Sound", 1);
config->addOption("volume", "SDL.Sound.Volume", 150);
config->addOption("trianglevol", "SDL.Sound.TriangleVolume", 256);
config->addOption("square1vol", "SDL.Sound.Square1Volume", 256);
config->addOption("square2vol", "SDL.Sound.Square2Volume", 256);
config->addOption("noisevol", "SDL.Sound.NoiseVolume", 256);
config->addOption("pcmvol", "SDL.Sound.PCMVolume", 256);
config->addOption("trianglevol", "SDL.Sound.TriangleVolume", 255);
config->addOption("square1vol", "SDL.Sound.Square1Volume", 255);
config->addOption("square2vol", "SDL.Sound.Square2Volume", 255);
config->addOption("noisevol", "SDL.Sound.NoiseVolume", 255);
config->addOption("pcmvol", "SDL.Sound.PCMVolume", 255);
config->addOption("soundrate", "SDL.Sound.Rate", 44100);
config->addOption("soundq", "SDL.Sound.Quality", 1);
config->addOption("soundrecord", "SDL.Sound.RecordFile", "");