summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/d_deh.h
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-01 16:39:03 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-01 16:39:03 +0000
commitc9d4b7977a995f111945b21f4115c071b5f0dd72 (patch)
treee46280014db602378a14d3cff008b07a7d34b088 /apps/plugins/doom/d_deh.h
parent5574af83342522a0a2373bbd1b06af01701017ab (diff)
downloadrockbox-c9d4b7977a995f111945b21f4115c071b5f0dd72.tar.gz
rockbox-c9d4b7977a995f111945b21f4115c071b5f0dd72.zip
doom: fix types mismatch spotted by gcc 4.5.1
- some variables were defined as const but declared without const - remove double declaration of mapnames* (already in .h) - forceOldBsp is boolean, not int git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27660 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/d_deh.h')
-rw-r--r--apps/plugins/doom/d_deh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/d_deh.h b/apps/plugins/doom/d_deh.h
index 0844c38be1..0d65260b18 100644
--- a/apps/plugins/doom/d_deh.h
+++ b/apps/plugins/doom/d_deh.h
@@ -86,7 +86,7 @@ extern const char *s_QLPROMPT; // = QLPROMPT;
86"you can't start a new game\n"\ 86"you can't start a new game\n"\
87"while in a network game.\n\n"PRESSKEY 87"while in a network game.\n\n"PRESSKEY
88*/ 88*/
89extern char *s_NEWGAME; // = NEWGAME; 89extern const char *s_NEWGAME; // = NEWGAME;
90 90
91// CPhipps - message given when asked if to restart the level 91// CPhipps - message given when asked if to restart the level
92extern char *s_RESTARTLEVEL; 92extern char *s_RESTARTLEVEL;