Fixed warning.

svn-id: r16386
This commit is contained in:
Torbjörn Andersson 2004-12-30 14:54:08 +00:00
parent 92a43e14a0
commit 8ce71ebb20

View File

@ -77,33 +77,33 @@ PathDirectionData pathDirectionLUT[8][4] = {
}; };
int pathDirectionLUT2[8][2] = { int pathDirectionLUT2[8][2] = {
0, -1, { 0, -1},
1, 0, { 1, 0},
0, 1, { 0, 1},
-1, 0, {-1, 0},
1, -1, { 1, -1},
1, 1, { 1, 1},
-1, 1, {-1, 1},
-1, -1 {-1, -1}
}; };
int angleLUT[16][2] = { int angleLUT[16][2] = {
0, -256, { 0, -256},
98, -237, { 98, -237},
181, -181, { 181, -181},
237, -98, { 237, -98},
256, 0, { 256, 0},
237, 98, { 237, 98},
181, 181, { 181, 181},
98, 237, { 98, 237},
0, 256, { 0, 256},
-98, 237, { -98, 237},
-181, 181, {-181, 181},
-237, 98, {-237, 98},
-256, 0, {-256, 0},
-237, -98, {-237, -98},
-181, -181, {-181, -181},
-98, -237 { -98, -237}
}; };