projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7705b9d
)
Moved SCREEN_W and SCREEN_H to setup.cpp to avoid ppl using them.
author
Ricardo Cruz
<rick2@aeiou.pt>
Thu, 6 May 2004 21:39:47 +0000
(21:39 +0000)
committer
Ricardo Cruz
<rick2@aeiou.pt>
Thu, 6 May 2004 21:39:47 +0000
(21:39 +0000)
SVN-Revision: 1014
src/defines.h
patch
|
blob
|
history
src/setup.cpp
patch
|
blob
|
history
diff --git
a/src/defines.h
b/src/defines.h
index
2810cf6
..
163f1bd
100644
(file)
--- a/
src/defines.h
+++ b/
src/defines.h
@@
-48,11
+48,6
@@
enum DyingType {
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
diff --git
a/src/setup.cpp
b/src/setup.cpp
index
5118cfd
..
ad6a200
100644
(file)
--- a/
src/setup.cpp
+++ b/
src/setup.cpp
@@
-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);