SCI: Allow debugging output of all VM variables in one shot

This commit is contained in:
Colin Snover 2016-04-30 13:04:21 -05:00
parent 32e7eec73d
commit 79ddb9e605

View File

@ -2565,9 +2565,14 @@ bool Console::cmdVMVars(int argc, const char **argv) {
case 1:
case 2:
case 3: {
// for global, local, temp and param, we need an index
if (argc < 3) {
debugPrintf("Variable number must be specified for requested type\n");
for (int i = 0; i < s->variablesMax[varType]; ++i) {
curValue = &s->variables[varType][i];
debugPrintf("%s var %d == %04x:%04x", varNames[varType], i, PRINT_REG(*curValue));
printBasicVarInfo(*curValue);
debugPrintf("\n");
}
return true;
}
if (argc > 4) {