diff options
author | Joost Peters | 2005-04-10 12:32:56 +0000 |
---|---|---|
committer | Joost Peters | 2005-04-10 12:32:56 +0000 |
commit | e3fbf090350f6a967cc04d9804dbb4ed64e7a1af (patch) | |
tree | d2b44665fdb9648f6510e56ac522a2a3667cca3b /gob | |
parent | 9d9a0727628939808eca1d5b0ba708fa5168a0aa (diff) | |
download | scummvm-rg350-e3fbf090350f6a967cc04d9804dbb4ed64e7a1af.tar.gz scummvm-rg350-e3fbf090350f6a967cc04d9804dbb4ed64e7a1af.tar.bz2 scummvm-rg350-e3fbf090350f6a967cc04d9804dbb4ed64e7a1af.zip |
fix another "x = y" type copy/paste bug, unfortunately this still doesn't fix the jumping goblin in the first scene
svn-id: r17507
Diffstat (limited to 'gob')
-rw-r--r-- | gob/goblin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gob/goblin.cpp b/gob/goblin.cpp index 62f65f9e92..855a14b975 100644 --- a/gob/goblin.cpp +++ b/gob/goblin.cpp @@ -2941,8 +2941,8 @@ void gob_interFunc(void) { map_curGoblinX = xPos; gob_gobPositions[item].y = yPos; - gob_pressedMapX = yPos; - map_curGoblinX = yPos; + gob_pressedMapY = yPos; + map_curGoblinY = yPos; *gob_curGobScrXVarPtr = objDesc->xPos; *gob_curGobScrYVarPtr = objDesc->yPos; |