From 52f669c93c9497a03e3e32467a4614263e1c6382 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Tue, 6 Sep 2011 23:14:49 +0200 Subject: CGE: Replace Hxy by Common::Point --- engines/cge/snail.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/cge/snail.cpp') 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) { -- cgit v1.2.3