diff options
| author | Travis Howell | 2004-08-26 14:28:42 +0000 | 
|---|---|---|
| committer | Travis Howell | 2004-08-26 14:28:42 +0000 | 
| commit | f6eae9d1a1beeca56667ad40047a1cbac7b91f83 (patch) | |
| tree | c855faf31d65b452dbe85fadf162227fbef82a83 /scumm/script.cpp | |
| parent | 5805529c2c1d33df8fcf1800a20a4f2f57e98dde (diff) | |
| download | scummvm-rg350-f6eae9d1a1beeca56667ad40047a1cbac7b91f83.tar.gz scummvm-rg350-f6eae9d1a1beeca56667ad40047a1cbac7b91f83.tar.bz2 scummvm-rg350-f6eae9d1a1beeca56667ad40047a1cbac7b91f83.zip | |
Update akos error messages
Add proper timer opcodes
Up some debug msgs.
svn-id: r14779
Diffstat (limited to 'scumm/script.cpp')
| -rw-r--r-- | scumm/script.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/scumm/script.cpp b/scumm/script.cpp index 4de7d38bca..8282074d88 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -657,7 +657,7 @@ void ScummEngine::setResult(int value) {  void ScummEngine::push(int a) {  	assert(_scummStackPos >= 0 && _scummStackPos < ARRAYSIZE(_vmStack)); -	//debug(9, "push %d", a); +	debug(9, "push %d", a);  	_vmStack[_scummStackPos++] = a;  } @@ -666,7 +666,7 @@ int ScummEngine::pop() {  		error("No items on stack to pop() for %s (0x%X) at [%d-%d]", getOpcodeDesc(_opcode), _opcode, _roomResource, vm.slot[_currentScript].number);  	}  	--_scummStackPos; -	//debug(9, "pop %d", _vmStack[_scummStackPos]); +	debug(9, "pop %d", _vmStack[_scummStackPos]);  	return _vmStack[_scummStackPos];  } | 
