aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2008-07-29 20:15:29 +0000
committerJohannes Schickel2008-07-29 20:15:29 +0000
commite3a600b1d0e9bb6f3932c338f12ffa7c74fef323 (patch)
tree153cd349e17727de6e5d50f933f0afe626e49d42 /common
parent68f41290a30001d3d05c8ccf4e2cf65bd8e740be (diff)
downloadscummvm-rg350-e3a600b1d0e9bb6f3932c338f12ffa7c74fef323.tar.gz
scummvm-rg350-e3a600b1d0e9bb6f3932c338f12ffa7c74fef323.tar.bz2
scummvm-rg350-e3a600b1d0e9bb6f3932c338f12ffa7c74fef323.zip
Little fix for documentation.
svn-id: r33426
Diffstat (limited to 'common')
-rw-r--r--common/func.h4
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.