summaryrefslogtreecommitdiff
path: root/games
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
parentUSE_OPENSSL, respect CC, CFLAGS, LOCALBASE (diff)
Fix port for -stable
Broken by: Alex Langer <alex@big.endian.de> Break noticed by: Alex Langer <alex@big.endian.de> PR: 16518 Submitted by: Maintainer
Notes
Notes: svn path=/head/; revision=25526
Diffstat (limited to 'games')
-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];}
};