SCI: Renamed global array 'formats' to the slightly more descriptive g_opcode_formats
svn-id: r40031
This commit is contained in:
parent
d567482818
commit
5325f9b76e
4 changed files with 10 additions and 10 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue