summary refs log tree commit diff
path: root/src/Files.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 18:11:55 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 21:31:11 +0700
commit325dca9f212f9fd44cd10a8180529970c7a08c72 (patch)
treee1cfaec078dfa49f4d51d05eef8a5b0967843a41 /src/Files.h
parent10f5376de856ecead4e8bbf66f19157f36f7a382 (diff)
downloadblackshades-1.2.0.tar.gz
Remove trailing whitespaces and duplicated blank lines 1.2.0
Diffstat (limited to 'src/Files.h')
-rw-r--r--src/Files.h18
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