diff options
-rw-r--r-- | games/xkobo/files/patch-ae | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/xkobo/files/patch-ae b/games/xkobo/files/patch-ae index 39b6e1805c34..fd3bfd30d9b6 100644 --- a/games/xkobo/files/patch-ae +++ b/games/xkobo/files/patch-ae @@ -25,7 +25,7 @@ void make_maze(int x, int y, int difx, int dify); void convert(int ratio); /* ratio < 64 */ - inline char& pos(int x, int y){ return data[(y<<sx_log2) + x];} -+ inline char& pos(int x, int y){ return data[(y<<MAP_SIZEY_LOG2) + x];} ++ inline char& pos(int x, int y){ return data[(y<<MAP_SIZEX_LOG2) + x];} }; |