aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-07-03 22:06:13 +0000
committerMax Horn2003-07-03 22:06:13 +0000
commit3ed9aae095b4ed2aab2c3d7a43600bd2bb31d53b (patch)
treec5cb5907a7e0101e03799c29e57bdf33f5ab94ff /scumm
parentc60e1aeb86e61b9f29227b773ef98aeac6381f92 (diff)
downloadscummvm-rg350-3ed9aae095b4ed2aab2c3d7a43600bd2bb31d53b.tar.gz
scummvm-rg350-3ed9aae095b4ed2aab2c3d7a43600bd2bb31d53b.tar.bz2
scummvm-rg350-3ed9aae095b4ed2aab2c3d7a43600bd2bb31d53b.zip
const correctness
svn-id: r8727
Diffstat (limited to 'scumm')
-rw-r--r--scumm/debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 74d3aef13c..a49e1fcb5f 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -900,7 +900,7 @@ void ScummDebugger::drawBox(int box) {
}
bool ScummDebugger::Cmd_PrintDraft(int argc, const char **argv) {
- char *names[] = {
+ const char *names[] = {
"Opening", "Straw to Gold", "Dyeing",
"Night Vision", "Twisting", "Sleep",
"Emptying", "Invisibility", "Terror",
@@ -913,7 +913,7 @@ bool ScummDebugger::Cmd_PrintDraft(int argc, const char **argv) {
73, 19274, 76, 77, 20302, 20816, 21330, 84
};
- char *notes = "cdefgabC";
+ const char *notes = "cdefgabC";
int i, base, draft;
if (_s->_gameId != GID_LOOM && _s->_gameId != GID_LOOM256) {