SCI: Changed EngineState::opcodes to a Common::Array (maybe we shold just remove the relevant code completely, though, it seems useless, esp. as long as we hardcode the way we interpret every opcode

svn-id: r40740
This commit is contained in:
Max Horn 2009-05-20 17:52:33 +00:00
parent 7d54385dea
commit 4c786a44c9
7 changed files with 18 additions and 41 deletions

View file

@ -1302,7 +1302,7 @@ reg_t disassemble(EngineState *s, reg_t pos, int print_bw_tag, int print_bytecod
if (print_bw_tag)
sciprintf("[%c] ", opsize ? 'B' : 'W');
sciprintf("%s", s->opcodes[opcode].name);
sciprintf("%s", s->_opcodes[opcode].name.c_str());
i = 0;
while (g_opcode_formats[opcode][i]) {