aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-15 21:57:38 +0000
committerMax Horn2003-05-15 21:57:38 +0000
commit8b419944eee013fe45909b15e0375531383dd25b (patch)
tree6114d61501ad0fcb38d801be0205c1f334f610f3 /scumm/gfx.cpp
parent73e086fe625663a04f1b34c372ec93de440231d1 (diff)
downloadscummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.tar.gz
scummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.tar.bz2
scummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.zip
ScummPoint -> ScummVM::Point
svn-id: r7543
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index b299bc701f..a032156e17 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1950,7 +1950,7 @@ void Scumm::setCameraAtEx(int at) {
void Scumm::setCameraAt(int pos_x, int pos_y) {
if (_features & GF_AFTER_V7) {
- ScummPoint old;
+ ScummVM::Point old;
old = camera._cur;
@@ -2042,7 +2042,7 @@ void Scumm::setCameraFollows(Actor *a) {
}
}
-void Scumm::clampCameraPos(ScummPoint *pt) {
+void Scumm::clampCameraPos(ScummVM::Point *pt) {
if (pt->x < VAR(VAR_CAMERA_MIN_X))
pt->x = VAR(VAR_CAMERA_MIN_X);
@@ -2058,7 +2058,7 @@ void Scumm::clampCameraPos(ScummPoint *pt) {
void Scumm::moveCamera() {
if (_features & GF_AFTER_V7) {
- ScummPoint old = camera._cur;
+ ScummVM::Point old = camera._cur;
Actor *a = NULL;
if (camera._follows) {