Misc tweaks, partially bump version to 1.1

This commit is contained in:
elasota
2021-03-30 05:24:37 -04:00
parent 69f59f769d
commit 1ac69c2c75
8 changed files with 38 additions and 8 deletions

View File

@@ -12,6 +12,7 @@
#include "FileManager.h"
#include "GpIOStream.h"
#include "House.h"
#include "IGpLogDriver.h"
#include "IGpSystemServices.h"
#include "ObjectEdit.h"
#include "ResourceManager.h"
@@ -858,6 +859,11 @@ Boolean QuerySaveChanges (void)
void YellowAlert (short whichAlert, short identifier)
{
IGpLogDriver *logger = PLDrivers::GetLogDriver();
if (logger)
logger->Printf(IGpLogDriver::Category_Warning, "Yellow alert %i identifier %i", static_cast<int>(whichAlert), static_cast<int>(identifier));
#define kYellowAlert 1006
Str255 errStr, errNumStr;
short whoCares;