Fixed the output from the "res" debugger command that I accidentally broke, oh,

almost four months ago.

svn-id: r22167
This commit is contained in:
Torbjörn Andersson 2006-04-26 05:59:58 +00:00
parent 9aec81802d
commit 6b10484513

View File

@ -291,7 +291,7 @@ bool Debugger::Cmd_Res(int argc, const char **argv) {
for (uint i = 0; i < numClusters; i++) {
const char *locStr[3] = { "HDD", "CD1", "CD2" };
DebugPrintf("%-20s %d\n", resFiles[i].fileName, locStr[resFiles[i].cd]);
DebugPrintf("%-20s %s\n", resFiles[i].fileName, locStr[resFiles[i].cd]);
}
DebugPrintf("%d resources\n", _vm->_resman->getNumResFiles());