[Scummvm-cvs-logs] CVS: scummvm/saga game.h,1.11,1.12

Torbjörn Andersson eriktorbjorn at users.sourceforge.net
Mon Nov 15 00:12:02 CET 2004


Update of /cvsroot/scummvm/scummvm/saga
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29689

Modified Files:
	game.h 
Log Message:
GCC doesn't like "const int" in a struct apparently.


Index: game.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/game.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- game.h	15 Nov 2004 03:03:47 -0000	1.11
+++ game.h	15 Nov 2004 08:11:02 -0000	1.12
@@ -47,8 +47,8 @@
 
 struct GAMEDESC {
 	const char *name;
-	const int gd_game_type;
-	const uint32 gd_game_id;
+	int gd_game_type;
+	uint32 gd_game_id;
 	const char *gd_title;
 	int gd_logical_w;
 	int gd_logical_h;





More information about the Scummvm-git-logs mailing list