diff options
| author | Max Horn | 2002-12-09 01:27:40 +0000 |
|---|---|---|
| committer | Max Horn | 2002-12-09 01:27:40 +0000 |
| commit | 0720fa80c8f745310f7fd9753ff5242245bf9646 (patch) | |
| tree | 178a18792d54bf2849792d8c7ff78bbddb8a5d9f /scumm/gfx.cpp | |
| parent | 2345aa0307b079e5d2261e610432b9d94492b447 (diff) | |
| download | scummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.tar.gz scummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.tar.bz2 scummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.zip | |
cleanup
svn-id: r5893
Diffstat (limited to 'scumm/gfx.cpp')
| -rw-r--r-- | scumm/gfx.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index bd760fa38d..101b71a21e 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -278,6 +278,16 @@ void Scumm::setCursor(int cursor) warning("setCursor(%d)", cursor); } +void Scumm::setCameraAtEx(int at) +{ + if (!(_features & GF_AFTER_V7)) { + camera._mode = CM_NORMAL; + camera._cur.x = at; + setCameraAt(at, 0); + camera._movingToActor = false; + } +} + void Scumm::setCameraAt(int pos_x, int pos_y) { if (_features & GF_AFTER_V7) { @@ -2393,7 +2403,7 @@ void Scumm::moveCamera() if (t < 5) camera._dest.x = actorx - 80; } else - camera._movingToActor = 1; + camera._movingToActor = true; } } @@ -2419,7 +2429,7 @@ void Scumm::moveCamera() /* a is set a bit above */ if (camera._movingToActor && camera._cur.x >> 3 == a->x >> 3) { - camera._movingToActor = 0; + camera._movingToActor = false; } cameraMoved(); @@ -2464,7 +2474,7 @@ void Scumm::panCameraTo(int x, int y) camera._dest.x = x; camera._mode = CM_PANNING; - camera._movingToActor = 0; + camera._movingToActor = false; } } @@ -2477,7 +2487,7 @@ void Scumm::actorFollowCamera(int act) if (act == 0) { camera._mode = CM_NORMAL; camera._follows = 0; - camera._movingToActor = 0; + camera._movingToActor = false; return; } @@ -2486,17 +2496,7 @@ void Scumm::actorFollowCamera(int act) if (camera._follows != old) runHook(0); - camera._movingToActor = 0; - } -} - -void Scumm::setCameraAtEx(int at) -{ - if (!(_features & GF_AFTER_V7)) { - camera._mode = CM_NORMAL; - camera._cur.x = at; - setCameraAt(at, 0); - camera._movingToActor = 0; + camera._movingToActor = false; } } |
