aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/location.cpp
diff options
context:
space:
mode:
authorMax Horn2007-01-15 21:14:34 +0000
committerMax Horn2007-01-15 21:14:34 +0000
commitabb7d49bcaf90ddeb0fb10a30d6bd83c8ac574d8 (patch)
tree6623ef34b32735186eee8991bce6e487425cec81 /engines/parallaction/location.cpp
parenta90529c3230ad609b2956aa46027619a7f7239fe (diff)
downloadscummvm-rg350-abb7d49bcaf90ddeb0fb10a30d6bd83c8ac574d8.tar.gz
scummvm-rg350-abb7d49bcaf90ddeb0fb10a30d6bd83c8ac574d8.tar.bz2
scummvm-rg350-abb7d49bcaf90ddeb0fb10a30d6bd83c8ac574d8.zip
Fixing const related warnings in the parallaction engine
svn-id: r25095
Diffstat (limited to 'engines/parallaction/location.cpp')
-rw-r--r--engines/parallaction/location.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/location.cpp b/engines/parallaction/location.cpp
index 788027a9ac..c6abbdf2bd 100644
--- a/engines/parallaction/location.cpp
+++ b/engines/parallaction/location.cpp
@@ -150,7 +150,7 @@ void Parallaction::parseLocation(const char *filename) {
_si = 1;
do {
- byte _al = searchTable(_tokens[_si], _localFlagNames);
+ byte _al = searchTable(_tokens[_si], (const char **)_localFlagNames);
_localFlags[_currentLocationIndex] |= 1 << (_al - 1);
_si++;