diff options
| author | Max Horn | 2003-05-26 01:33:02 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-05-26 01:33:02 +0000 | 
| commit | c55a7e32daa22b49feebd206ced12ddb7e79ae43 (patch) | |
| tree | ebae538c0bd4acbe49a4cb9d276b0d6c624d7cd4 | |
| parent | 0856fba592e9a8427071affe3d172b8414bdbb38 (diff) | |
| download | scummvm-rg350-c55a7e32daa22b49feebd206ced12ddb7e79ae43.tar.gz scummvm-rg350-c55a7e32daa22b49feebd206ced12ddb7e79ae43.tar.bz2 scummvm-rg350-c55a7e32daa22b49feebd206ced12ddb7e79ae43.zip  | |
script numbers can have up to 5 digits
svn-id: r7982
| -rw-r--r-- | scumm/debugger.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp index f3a8d57884..5d7e0ccf9e 100644 --- a/scumm/debugger.cpp +++ b/scumm/debugger.cpp @@ -525,12 +525,12 @@ bool ScummDebugger::Cmd_ImportRes(int argc, const char** argv) {  bool ScummDebugger::Cmd_PrintScript(int argc, const char **argv) {  	int i;  	ScriptSlot *ss = &_s->vm.slot[1]; -	Debug_Printf("+-----------------------------------+\n"); -	Debug_Printf("|# |num|offset|sta|typ|fr|rec|fc|cut|\n"); -	Debug_Printf("+--+---+------+---+---+--+--+---+---+\n"); +	Debug_Printf("+-------------------------------------+\n"); +	Debug_Printf("|# | num |offset|sta|typ|fr|rec|fc|cut|\n"); +	Debug_Printf("+--+-----+------+---+---+--+--+---+---+\n");  	for (i = 1; i < NUM_SCRIPT_SLOT; i++, ss++) {  		if (ss->number) { -			Debug_Printf("|%2d|%3d|0x%04x|%3d|%3d|%2d|%3d|%2d|%3d|\n", +			Debug_Printf("|%2d|%5d|0x%04x|%3d|%3d|%2d|%3d|%2d|%3d|\n",  					i, ss->number, ss->offs, ss->status, ss->where,  					ss->freezeResistant, ss->recursive,  					ss->freezeCount, ss->cutsceneOverride);  | 
