SCI: Added TODO suggestion to change the vm opcode switch/case to an opcode table with methods for each opcode (helps to separate code and deal with changed opcode numbering in other SCI versions)

svn-id: r38594
This commit is contained in:
Max Horn 2009-02-20 15:44:22 +00:00
parent f78f2aeafc
commit 7422e98f8f

View File

@ -870,7 +870,8 @@ run_vm(state_t *s, int restoring) {
}
// TODO: Replace the following by an opcode table, and several methods for
// each opcode.
switch (opnumber) {
case 0x00: /* bnot */