aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
Diffstat (limited to 'saga')
-rw-r--r--saga/actor.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/saga/actor.cpp b/saga/actor.cpp
index c4461c3bfe..f7df23fab4 100644
--- a/saga/actor.cpp
+++ b/saga/actor.cpp
@@ -77,33 +77,33 @@ PathDirectionData pathDirectionLUT[8][4] = {
};
int pathDirectionLUT2[8][2] = {
- 0, -1,
- 1, 0,
- 0, 1,
- -1, 0,
- 1, -1,
- 1, 1,
- -1, 1,
- -1, -1
+ { 0, -1},
+ { 1, 0},
+ { 0, 1},
+ {-1, 0},
+ { 1, -1},
+ { 1, 1},
+ {-1, 1},
+ {-1, -1}
};
int angleLUT[16][2] = {
- 0, -256,
- 98, -237,
- 181, -181,
- 237, -98,
- 256, 0,
- 237, 98,
- 181, 181,
- 98, 237,
- 0, 256,
- -98, 237,
- -181, 181,
- -237, 98,
- -256, 0,
- -237, -98,
- -181, -181,
- -98, -237
+ { 0, -256},
+ { 98, -237},
+ { 181, -181},
+ { 237, -98},
+ { 256, 0},
+ { 237, 98},
+ { 181, 181},
+ { 98, 237},
+ { 0, 256},
+ { -98, 237},
+ {-181, 181},
+ {-237, 98},
+ {-256, 0},
+ {-237, -98},
+ {-181, -181},
+ { -98, -237}
};