Added const to some static data.

svn-id: r32763
This commit is contained in:
Johannes Schickel 2008-06-24 13:59:48 +00:00
parent 28e32bb7cb
commit df1aa7809a
10 changed files with 19 additions and 17 deletions

View file

@ -34,7 +34,7 @@ namespace Kyra {
TIMInterpreter::TIMInterpreter(KyraEngine_v1 *vm, OSystem *system) : _vm(vm), _system(system), _currentTim(0) {
#define COMMAND(x) { &TIMInterpreter::x, #x }
#define COMMAND_UNIMPL() { 0, 0 }
static CommandEntry commandProcs[] = {
static const CommandEntry commandProcs[] = {
// 0x00
COMMAND(cmd_initFunc0),
COMMAND(cmd_stopCurFunc),