aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/snail.cpp
diff options
context:
space:
mode:
authorStrangerke2011-09-06 23:14:49 +0200
committerStrangerke2011-09-06 23:14:49 +0200
commit52f669c93c9497a03e3e32467a4614263e1c6382 (patch)
tree954e4f4ac80c205c93479ebd923b87efba6af300 /engines/cge/snail.cpp
parent39d09d5865d9a01bfdbde02b047806f801a5d5c8 (diff)
downloadscummvm-rg350-52f669c93c9497a03e3e32467a4614263e1c6382.tar.gz
scummvm-rg350-52f669c93c9497a03e3e32467a4614263e1c6382.tar.bz2
scummvm-rg350-52f669c93c9497a03e3e32467a4614263e1c6382.zip
CGE: Replace Hxy by Common::Point
Diffstat (limited to 'engines/cge/snail.cpp')
-rw-r--r--engines/cge/snail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/snail.cpp b/engines/cge/snail.cpp
index ccdcac3578..0e0606706b 100644
--- a/engines/cge/snail.cpp
+++ b/engines/cge/snail.cpp
@@ -653,13 +653,13 @@ void CGEEngine::snUncover(Sprite *spr, Sprite *xspr) {
void CGEEngine::snSetX0(int cav, int x0) {
debugC(1, kCGEDebugEngine, "CGEEngine::snSetX0(%d, %d)", cav, x0);
- _heroXY[cav - 1]._x = x0;
+ _heroXY[cav - 1].x = x0;
}
void CGEEngine::snSetY0(int cav, int y0) {
debugC(1, kCGEDebugEngine, "CGEEngine::snSetY0(%d, %d)", cav, y0);
- _heroXY[cav - 1]._y = y0;
+ _heroXY[cav - 1].y = y0;
}
void CGEEngine::snSetXY(Sprite *spr, uint16 xy) {