diff options
author | jedgar <jedgar@FreeBSD.org> | 2000-02-07 05:53:41 +0800 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2000-02-07 05:53:41 +0800 |
commit | 54fa57406fb713467b25637bf4db110c0fa97e38 (patch) | |
tree | cb73107b1f7f5ed6c3ab5077a71c6c5041890129 /games/xkobo | |
parent | 0e16da1a3ad8fe7cb0c020d7c361df3d81905b0c (diff) | |
download | freebsd-ports-graphics-54fa57406fb713467b25637bf4db110c0fa97e38.tar.gz freebsd-ports-graphics-54fa57406fb713467b25637bf4db110c0fa97e38.tar.zst freebsd-ports-graphics-54fa57406fb713467b25637bf4db110c0fa97e38.zip |
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
Diffstat (limited to 'games/xkobo')
-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 39b6e1805c3..fd3bfd30d9b 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];} }; |