SCI: Fix class_table debugging command output

This commit is contained in:
sluicebox 2021-10-22 12:53:48 -05:00
parent 75f7151676
commit 2dcc62bfe3

View file

@ -1673,7 +1673,9 @@ bool Console::cmdClassTable(int argc, const char **argv) {
className,
PRINT_REG(temp.reg),
temp.script);
} else debugPrintf(" Class 0x%x (not loaded; can't get name) (script %d)\n", i, temp.script);
}
} else if (argc == 1) {
debugPrintf(" Class 0x%x (not loaded; can't get name) (script %d)\n", i, temp.script);
}
}