aboutsummaryrefslogtreecommitdiff
path: root/games/xkobo
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-06 21:53:41 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-06 21:53:41 +0000
commitda5b56c00495da9bf3fce8e48511007c26be3edb (patch)
tree8d0b8ff787855c3e6aea65d59fa3a2931f15a4d8 /games/xkobo
parent0732e1763ffd775163fbf1128e5c56607f27d98a (diff)
downloadports-da5b56c00495da9bf3fce8e48511007c26be3edb.tar.gz
ports-da5b56c00495da9bf3fce8e48511007c26be3edb.zip
Notes
Diffstat (limited to 'games/xkobo')
-rw-r--r--games/xkobo/files/patch-ae2
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];}
};