mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
Fixed warning.
svn-id: r16386
This commit is contained in:
parent
92a43e14a0
commit
8ce71ebb20
@ -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}
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user