diff options
-rw-r--r-- | engines/bbvs/minigames/bbant.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
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} }; |