diff options
author | Johannes Schickel | 2013-12-08 18:48:20 +0100 |
---|---|---|
committer | Johannes Schickel | 2013-12-08 18:48:20 +0100 |
commit | ae238fdba5253728e4663702cee0ad47665c9ab6 (patch) | |
tree | 5942f2bf7d1d82ffc38b39a50f9f542232a75a55 /engines/sci | |
parent | 239e39e30a8560af75cf5b4b45bad67aedc3eab3 (diff) | |
download | scummvm-rg350-ae238fdba5253728e4663702cee0ad47665c9ab6.tar.gz scummvm-rg350-ae238fdba5253728e4663702cee0ad47665c9ab6.tar.bz2 scummvm-rg350-ae238fdba5253728e4663702cee0ad47665c9ab6.zip |
SCI: Constify selectorNameTable.
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index 9c8619b89d..9d24549507 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -77,7 +77,7 @@ namespace Sci { // You have to use the exact same order in both the table and the enum, otherwise // it won't work. -static const char *selectorNameTable[] = { +static const char *const selectorNameTable[] = { "cycles", // system selector "seconds", // system selector "init", // system selector |