summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2014-03-22 09:21:48 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2014-03-22 09:21:48 +0800
commitb58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e (patch)
tree9df0a5d9c814e85e3af833a5853767470a6ab4c3
parent3939f452ab728e0b010f5822aab641670b3aafd5 (diff)
downloadpttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar.gz
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar.bz2
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar.lz
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar.xz
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.tar.zst
pttbbs-b58e3bb7c16e50e7441e3cf3aad0b19aaf905e0e.zip
Disable unknown "fix" in ch_dark.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5953 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/ch_dark.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/ch_dark.c b/pttbbs/mbbsd/ch_dark.c
index 6d709fb9..f6ea2de4 100644
--- a/pttbbs/mbbsd/ch_dark.c
+++ b/pttbbs/mbbsd/ch_dark.c
@@ -262,8 +262,11 @@ playing(struct DarkData *dd, sint fd, sint color, sint ch, sint * b, userinfo_t
draw_line(dd, dd->mly, -1);
dd->mly = dd->my;
dd->mlx = dd->mx;
- if (dd->brd[dd->mly][dd->mlx].value == 1)
- dd->fix = 1;
+ if (dd->brd[dd->mly][dd->mlx].value == 1) {
+ // TODO 這似乎是暗吃規則用,但目前暗吃早已壞掉,
+ // 反而會造成問題,所以我們先停用。
+ // dd->fix = 1;
+ }
draw_line(dd, dd->my, dd->mx);
}
*b = -1;