diff options
-rw-r--r-- | common/func.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/func.h b/common/func.h index fdb55b43c2..83ef9758df 100644 --- a/common/func.h +++ b/common/func.h @@ -305,8 +305,8 @@ private: * add the opcode implementations like this: * * Common::Array<Functor1<ScriptState, void> *> opcodeTable; - * opcodeTable[0] = new Functor1Mem<ScriptState, void, MyEngine>(&myEngine, &MyEngine_v1::o1_foo); - * opcodeTable[1] = new Functor1Mem<ScriptState, void, MyEngine>(&myEngine, &MyEngine_v2::o2_foo); + * opcodeTable[0] = new Functor1Mem<ScriptState, void, MyEngine_v1>(&myEngine, &MyEngine_v1::o1_foo); + * opcodeTable[1] = new Functor1Mem<ScriptState, void, MyEngine_v2>(&myEngine, &MyEngine_v2::o2_foo); * // unimplemented/unused opcode * opcodeTable[2] = 0; * etc. |