SCUMM: Make some variables const and one furthermore static.

This commit is contained in:
Johannes Schickel 2011-10-06 02:51:30 +02:00
parent 8d0a88e7f4
commit 833c692fc9

View file

@ -318,8 +318,8 @@ static bool detectSpeech(const Common::FSList &fslist, const GameSettings *gs) {
if (gs->platform == Common::kPlatformFMTowns)
return false;
const char *basenames[] = { gs->gameid, "monster", 0 };
const char *extensions[] = { "sou",
const char *const basenames[] = { gs->gameid, "monster", 0 };
static const char *const extensions[] = { "sou",
#ifdef USE_FLAC
"sof",
#endif