aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
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) {