[Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src app.cpp,1.11,1.12 palmgfx.cpp,1.6,1.7 shared.h,1.2,1.3

Joost Peters joostp at users.sourceforge.net
Wed Feb 9 04:19:09 CET 2005


Update of /cvsroot/scummvm/scummvm/backends/PalmOS/Src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9091/backends/PalmOS/Src

Modified Files:
	app.cpp palmgfx.cpp shared.h 
Log Message:
spelling


Index: app.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/app.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- app.cpp	20 Dec 2004 17:40:44 -0000	1.11
+++ app.cpp	9 Feb 2005 12:17:33 -0000	1.12
@@ -137,7 +137,7 @@
 }
 
 // Set the screen pitch for direct screen access
-// avaliable only before a game start
+// available only before a game start
 void WinScreenGetPitch() {
 	if (OPTIONS_TST(kOptModeHiDensity)) {
 		WinScreenGetAttribute(winScreenRowBytes, &(gVars->screenPitch));
@@ -381,8 +381,8 @@
 	GamImportDatabase();
 
 	AppStartCheckScreenSize();
-	AppStartCheckNotify(); 		// not fatal error if not avalaible
-	AppStartSetMemory();		// set memory required by the differents engines
+	AppStartCheckNotify(); 		// not fatal error if not available
+	AppStartSetMemory();		// set memory required by the different engines
 
 	// force ARM option if bDirectMode
 	if (!error)

Index: palmgfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/palmgfx.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- palmgfx.cpp	1 Jan 2005 16:08:44 -0000	1.6
+++ palmgfx.cpp	9 Feb 2005 12:17:34 -0000	1.7
@@ -193,13 +193,13 @@
 
 				// only for 320x200 games
 				if (!(_screenWidth == 320 && _screenHeight == 200)) {
-					warning("Wide display not avalaible for this game, switching to GFX_NORMAL mode.");
+					warning("Wide display not available for this game, switching to GFX_NORMAL mode.");
 					_mode = GFX_NORMAL;
 				}
 			}
 
 		} else {
-			warning("HiRes+ not avalaible on this device, switching to GFX_NORMAL mode.");
+			warning("HiRes+ not available on this device, switching to GFX_NORMAL mode.");
 			_mode = GFX_NORMAL;
 		}
 	}
@@ -318,7 +318,7 @@
 		// try to allocate on storage heap, TODO : error if failed
 		FtrPtrNew(appFileCreator, ftrBufferOverlay, _screenWidth * _screenHeight, (void **)&_tmpScreenP);
 		FtrPtrNew(appFileCreator, ftrBufferBackup, _screenWidth * _screenHeight, (void **)&_tmpBackupP);
-		// only if wide mode avalaible
+		// only if wide mode available
 		if OPTIONS_TST(kOptModeWide)
 			FtrPtrNew(appFileCreator, ftrBufferHotSwap, _screenWidth * _screenHeight, (void **)&_tmpHotSwapP);
 

Index: shared.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/shared.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- shared.h	25 May 2004 14:23:52 -0000	1.2
+++ shared.h	9 Feb 2005 12:17:34 -0000	1.3
@@ -3,11 +3,11 @@
 
 // OSystem : wide display
 // consider ony 480x320 screens
-// only avalaible for 320x200 games, so use values instead of vars
+// only available for 320x200 games, so use values instead of vars
 #define WIDE_PITCH			320	// pitch in portrait mode
 #define WIDE_FULL_WIDTH		320	// original screen size
 #define WIDE_HALF_WIDTH		160	// 320 / 2
 #define WIDE_HALF_HEIGHT	100	// 200 / 2
 
 
-#endif
\ No newline at end of file
+#endif





More information about the Scummvm-git-logs mailing list