diff options
Diffstat (limited to 'src/Files.h')
-rw-r--r-- | src/Files.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Files.h b/src/Files.h index 35f4b6e..01ea9da 100644 --- a/src/Files.h +++ b/src/Files.h @@ -10,7 +10,7 @@ #include <cmath> #include <iostream> #include <fstream> -#ifdef OS9 +#ifdef OS9 #include "gl.h" // Header File For The OpenGL32 Library #include "glu.h" // Header File For The GLu32 Library #include "tk.h" // Header File For The Glaux Library @@ -18,14 +18,14 @@ #include <GL/gl.h> #include <GL/glu.h> #endif -#ifdef OS9 +#ifdef OS9 #include <Sound.h> #include <Resources.h> #include "AGL_DSp.h" // Header for OpenGL and DrawSprocket Functions #include "Alerts.h" // Header for Dialogs and alerts for this application #endif #include "MacInput.h" // Header for Special Mac Input functions -#ifdef OS9 +#ifdef OS9 #include "glm.h" #include <TextUtils.h> #endif @@ -72,24 +72,24 @@ class Files public: char szSavedGameName[FILE_NAME_SIZE + 1]; short sSavedGameVolume; -#ifdef OS9 +#ifdef OS9 SFReply sfReply; Boolean bGameSaved; #endif -#ifdef OS9 +#ifdef OS9 short sFile; #else int sFile; #endif -#ifdef OS9 +#ifdef OS9 short OpenFile(Str255 Name); #else int OpenFile(Str255 Name); - Files() : sFile(-1) { } + Files() : sFile(-1) { } #endif -#ifdef OS9 +#ifdef OS9 short PromptForSaveAS( short sPromptID, short sNameID, Str255 str255NamePrompt, @@ -109,5 +109,5 @@ class Files void StartLoad(); void EndLoad(); }; - + #endif |