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

@@ -54,7 +54,7 @@ void UpdateOriginalArt (Dialog *);
int16_t OriginalArtFilter (void *context, Dialog *dialog, const TimeTaggedVOSEvent *evt);
Boolean PictIDExists (short);
short GetFirstPICT (void);
void BitchAboutPICTNotFound (void);
void ComplainAboutPICTNotFound (void);
Rect tileSrc, tileDest, tileSrcRect, editTETextBox;
@@ -441,7 +441,7 @@ void DoRoomInfo(void)
// SetPort((GrafPtr)tileSrcMap);
if ((tempBack > kStars) && (!PictIDExists(tempBack)))
{
BitchAboutPICTNotFound();
ComplainAboutPICTNotFound();
tempBack = kSimpleRoom;
}
if ((tempBack == 2002) || (tempBack == 2011) ||
@@ -869,10 +869,10 @@ short GetFirstPICT (void)
return resID;
}
//-------------------------------------------------------------- BitchAboutPICTNotFound
//-------------------------------------------------------------- ComplainAboutPICTNotFound
#ifndef COMPILEDEMO
void BitchAboutPICTNotFound (void)
void ComplainAboutPICTNotFound (void)
{
short hitWhat;