From 3aba8da16b2385fb257034d6d45013b3e1b44af8 Mon Sep 17 00:00:00 2001 From: johndoe123 Date: Sun, 16 Feb 2014 00:28:43 +0100 Subject: BBVS: Remove Point type and use BBPoint instead in BBAnt minigame --- engines/bbvs/minigames/bbant.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'engines/bbvs/minigames') diff --git a/engines/bbvs/minigames/bbant.cpp b/engines/bbvs/minigames/bbant.cpp index 1b9293a231..03d507e575 100644 --- a/engines/bbvs/minigames/bbant.cpp +++ b/engines/bbvs/minigames/bbant.cpp @@ -24,16 +24,12 @@ namespace Bbvs { -struct Point { - int x, y; -}; - -static const Point kPosIncrTbl1[] = { +static const BBPoint kPosIncrTbl1[] = { {0, -1}, {-1, -1}, {-1, 0}, {-1, 1}, { 0, 1}, { 1, 1}, { 1, 0}, { 1, -1} }; -static const Point kPosIncrTbl2[] = { +static const BBPoint kPosIncrTbl2[] = { {0, -2}, {-2, -2}, {-2, 0}, {-2, 2}, { 0, 2}, { 2, 2}, { 2, 0}, { 2, -2} }; -- cgit v1.2.3