SCI: Renamed global array 'formats' to the slightly more descriptive g_opcode_formats

svn-id: r40031
This commit is contained in:
Max Horn 2009-04-20 19:28:33 +00:00
parent d567482818
commit 5325f9b76e
4 changed files with 10 additions and 10 deletions

View file

@ -737,8 +737,8 @@ void run_vm(EngineState *s, int restoring) {
opnumber = opcode >> 1;
for (temp = 0; formats[opnumber][temp]; temp++)
switch (formats[opnumber][temp]) {
for (temp = 0; g_opcode_formats[opnumber][temp]; temp++)
switch (g_opcode_formats[opnumber][temp]) {
case Script_Byte:
opparams[temp] = GET_OP_BYTE();