diff options
author | Johannes Schickel | 2011-09-08 19:51:51 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-09-08 19:51:51 +0200 |
commit | 16344ab6a82be048fd45581a83b5dd99db1d741d (patch) | |
tree | 41fc6b48e08ad6ca2b9ae344dc345fb04cc1c49c | |
parent | 5739e86e0c6472f1b8d61710c1a9de56774314e3 (diff) | |
download | scummvm-rg350-16344ab6a82be048fd45581a83b5dd99db1d741d.tar.gz scummvm-rg350-16344ab6a82be048fd45581a83b5dd99db1d741d.tar.bz2 scummvm-rg350-16344ab6a82be048fd45581a83b5dd99db1d741d.zip |
HUGO: Made some static data const.
-rw-r--r-- | engines/hugo/parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/parser.cpp b/engines/hugo/parser.cpp index 38a8e4e3ff..bbf6c39f13 100644 --- a/engines/hugo/parser.cpp +++ b/engines/hugo/parser.cpp @@ -449,7 +449,7 @@ const char *Parser::findVerb() const { */ void Parser::showDosInventory() const { debugC(1, kDebugParser, "showDosInventory()"); - static const char *blanks = " "; + static const char *const blanks = " "; uint16 index = 0, len1 = 0, len2 = 0; for (int i = 0; i < _vm->_object->_numObj; i++) { // Find widths of 2 columns |