[Super-tux-commit] supertux/src defines.h,1.31,1.32 setup.cpp,1.72,1.73
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-05-06 21:39:57
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32622/src Modified Files: defines.h setup.cpp Log Message: Moved SCREEN_W and SCREEN_H to setup.cpp to avoid ppl using them. Index: defines.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/defines.h,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- defines.h 4 May 2004 20:57:01 -0000 1.31 +++ defines.h 6 May 2004 21:39:47 -0000 1.32 @@ -48,11 +48,6 @@ DYING_FALLING = 2 }; -/* Screen proprities: */ -/* Don't use this to test for the actual screen sizes. Use screen->w/h instead! */ -#define SCREEN_W 640 -#define SCREEN_H 480 - /* Sizes: */ #define SMALL 0 Index: setup.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/setup.cpp,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- setup.cpp 6 May 2004 15:09:47 -0000 1.72 +++ setup.cpp 6 May 2004 21:39:47 -0000 1.73 @@ -62,6 +62,11 @@ #define DATA_PREFIX "./data/" #endif +/* Screen proprities: */ +/* Don't use this to test for the actual screen sizes. Use screen->w/h instead! */ +#define SCREEN_W 640 +#define SCREEN_H 480 + /* Local function prototypes: */ void seticon(void); |