diff options
author | Max Horn | 2003-05-14 09:49:44 +0000 |
---|---|---|
committer | Max Horn | 2003-05-14 09:49:44 +0000 |
commit | afe038d6dd03ff8b4028b3c95cb9a7c873dd8b65 (patch) | |
tree | 8ca3f0be6f81591361fa65734bfda1cf61304958 | |
parent | 05c44e606ecda344801adb957aebee5160a35f2e (diff) | |
download | scummvm-rg350-afe038d6dd03ff8b4028b3c95cb9a7c873dd8b65.tar.gz scummvm-rg350-afe038d6dd03ff8b4028b3c95cb9a7c873dd8b65.tar.bz2 scummvm-rg350-afe038d6dd03ff8b4028b3c95cb9a7c873dd8b65.zip |
Patch #737497 / Bug #737387
svn-id: r7495
-rw-r--r-- | scumm/actor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 7d40c837ff..ee9e0f3989 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -49,8 +49,8 @@ void Actor::initActor(int mode) { elevation = 0; width = 24; talkColor = 15; - talkPosX = -80; - talkPosY = 0; + talkPosX = 0; + talkPosY = -80; scaley = scalex = 0xFF; charset = 0; memset(sound, 0, sizeof(sound)); |