Make Redbook the default for Mac, because MIDI is buggy

This commit is contained in:
kreatordxx 2008-12-23 10:05:23 +00:00
parent 410707171e
commit 7b9dc359bb
2 changed files with 9 additions and 1 deletions

View file

@ -1,9 +1,13 @@
D1X-Rebirth Changelog
20081223
--------
main/config.c: Make Redbook the default for Mac, because MIDI is buggy
20081221
--------
2d/pcx.c, d1x-rebirth.xcodeproj/project.pbxproj, D1X.make, main/config.c: Fix Mac OS 9 compile issues, update Xcode project
arch/carbon/conf.h: Set SHAREPATH to "." so reading data from DXX's directory ACTUALLY WORKS
arch/carbon/conf.h: Set SHAREPATH to "." for Mac OS X so reading data from DXX's directory ACTUALLY WORKS
20081220
--------

View file

@ -69,7 +69,11 @@ int ReadConfigFile()
// set defaults
GameCfg.DigiVolume = 8;
GameCfg.MusicVolume = 8;
#if defined(__APPLE__) || defined(macintosh) // MIDI is buggy
GameCfg.SndEnableRedbook = 1;
#else
GameCfg.SndEnableRedbook = 0;
#endif
GameCfg.ReverseStereo = 0;
GameCfg.GammaLevel = 0;
memset(GameCfg.LastPlayer,0,CALLSIGN_LEN+1);