From 0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 2 Oct 2003 17:43:02 +0000 Subject: renamed namespace ScummVM to Common svn-id: r10544 --- scumm/camera.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scumm/camera.cpp') diff --git a/scumm/camera.cpp b/scumm/camera.cpp index 46633343ba..ffa5a20389 100644 --- a/scumm/camera.cpp +++ b/scumm/camera.cpp @@ -60,7 +60,7 @@ void Scumm::setCameraAt(int pos_x, int pos_y) { } void Scumm_v7::setCameraAt(int pos_x, int pos_y) { - ScummVM::Point old; + Common::Point old; old = camera._cur; @@ -133,7 +133,7 @@ void Scumm_v7::setCameraFollows(Actor *a) { } -void Scumm::clampCameraPos(ScummVM::Point *pt) { +void Scumm::clampCameraPos(Common::Point *pt) { if (pt->x < VAR(VAR_CAMERA_MIN_X)) pt->x = (short) VAR(VAR_CAMERA_MIN_X); @@ -226,7 +226,7 @@ void Scumm::moveCamera() { } void Scumm_v7::moveCamera() { - ScummVM::Point old = camera._cur; + Common::Point old = camera._cur; Actor *a = NULL; if (camera._follows) { -- cgit v1.2.3