Clean up language so we can bundle source without getting dinged on age rating.

This commit is contained in:
elasota
2020-11-06 17:51:19 -05:00
parent a13f90bd71
commit 4c6e646133
10 changed files with 29 additions and 56 deletions

View File

@@ -71,7 +71,7 @@ extern Boolean isMusicOn, isSoundOn, isPlayMusicIdle, isHouseChecks;
extern Boolean houseOpen, isDoColorFade, isEscPauseKey;
extern Boolean autoRoomEdit, doAutoDemo, doBackground;
extern Boolean isMapOpen, isToolsOpen, isCoordOpen;
extern Boolean doPrettyMap, doBitchDialogs;
extern Boolean doPrettyMap, doComplainDialogs;
//extern Boolean didValidation;
THandle<void> globalModulePrefs;
@@ -159,7 +159,7 @@ void ReadInPrefs (void)
isUseICCProfile = thePrefs.wasUseICCProfile;
doBackground = thePrefs.wasDoBackground;
doPrettyMap = thePrefs.wasPrettyMap;
doBitchDialogs = thePrefs.wasBitchDialogs;
doComplainDialogs = thePrefs.wasComplainDialogs;
if (modulePrefs)
ApplyModulePrefs(&modulePrefs);
@@ -244,7 +244,7 @@ void ReadInPrefs (void)
isUseICCProfile = true;
doBackground = false;
doPrettyMap = false;
doBitchDialogs = true;
doComplainDialogs = true;
IGpDisplayDriver *displayDriver = PortabilityLayer::HostDisplayDriver::GetInstance();
if (!displayDriver->IsFullScreen())
@@ -345,7 +345,7 @@ void WriteOutPrefs (void)
thePrefs.wasUseICCProfile = isUseICCProfile;
thePrefs.wasDoBackground = doBackground;
thePrefs.wasPrettyMap = doPrettyMap;
thePrefs.wasBitchDialogs = doBitchDialogs;
thePrefs.wasComplainDialogs = doComplainDialogs;
THandle<void> modulePrefs;