diff options
| author | Johannes Schickel | 2005-12-20 14:06:47 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2005-12-20 14:06:47 +0000 | 
| commit | d43294e7d4bfa1c36bf4cf76a5d0f27c73102b13 (patch) | |
| tree | 7057b340791259a236f2e6a22333fc93bbf890fe /kyra/script_v1.cpp | |
| parent | df493c63c4a0ffc66aa8576dae80a914c344606b (diff) | |
| download | scummvm-rg350-d43294e7d4bfa1c36bf4cf76a5d0f27c73102b13.tar.gz scummvm-rg350-d43294e7d4bfa1c36bf4cf76a5d0f27c73102b13.tar.bz2 scummvm-rg350-d43294e7d4bfa1c36bf4cf76a5d0f27c73102b13.zip | |
Fixed another gfx bug, this time sprite related, in the temple.
svn-id: r19816
Diffstat (limited to 'kyra/script_v1.cpp')
| -rw-r--r-- | kyra/script_v1.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/kyra/script_v1.cpp b/kyra/script_v1.cpp index 9d2db0ce96..6ed617a0ea 100644 --- a/kyra/script_v1.cpp +++ b/kyra/script_v1.cpp @@ -894,7 +894,7 @@ int KyraEngine::cmd_loadSoundFile(ScriptState *script) {  }  int KyraEngine::cmd_displayWSAFrameOnHidPage(ScriptState *script) { -	debug(3, "cmd_displayWSAFrameOnHidPage(0x%X) (%d, %d, %d, %d, %d)", script, stackPos(0), stackPos(1), stackPos(3), stackPos(4)); +	debug(3, "cmd_displayWSAFrameOnHidPage(0x%X) (%d, %d, %d, %d, %d)", script, stackPos(0), stackPos(1), stackPos(2), stackPos(3), stackPos(4));  	int frame = stackPos(0);  	int xpos = stackPos(1);  	int ypos = stackPos(2); | 
