diff options
author | Max Horn | 2002-05-10 21:19:24 +0000 |
---|---|---|
committer | Max Horn | 2002-05-10 21:19:24 +0000 |
commit | 1dc88c58554072d0fa717b03d98d1583cfc955a7 (patch) | |
tree | e5f983a4f310f75822686473e6d8a202a2ad3000 | |
parent | 08894c4d3722b21f145b80cf06b1ed5401b7375e (diff) | |
download | scummvm-rg350-1dc88c58554072d0fa717b03d98d1583cfc955a7.tar.gz scummvm-rg350-1dc88c58554072d0fa717b03d98d1583cfc955a7.tar.bz2 scummvm-rg350-1dc88c58554072d0fa717b03d98d1583cfc955a7.zip |
added FIXME comment
svn-id: r4273
-rw-r--r-- | scummvm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scummvm.cpp b/scummvm.cpp index 930165fbf8..b5d5e44ab8 100644 --- a/scummvm.cpp +++ b/scummvm.cpp @@ -1041,6 +1041,7 @@ int Scumm::numSimpleDirDirections(int dirType) return dirType ? 8 : 4; } +// FIXME - is the value "530" in many_direction_tab really correct? Maybe it should be "289" ? const uint16 many_direction_tab[18] = {4, 8, 71, 109, 251, 530, 0, 0, 0, 0, 22, 72, 107, 157, 202, 252, 287, 337}; const int16 many_direction_tab_2[16] = {0, 90, 180, 270, -1, -1, -1, -1, 0, 45, 90, 135, 180, 225, 270, 315}; const int bit_table[16] = {1,2,4,8,0x10,0x20,0x40,0x80,0x100,0x200,0x400,0x800,0x1000,0x2000,0x4000,0x8000}; |