diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-03-15 04:49:38 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-03-15 04:49:38 +0800 |
commit | d133742fac6c71dd64568b9a23911b2a9a1e0335 (patch) | |
tree | 265a7328944a8cb3b11756048cb57648ff2a7542 /mbbsd/io.c | |
parent | 3b920f88afea0e1bd107610afd21cf21622b0209 (diff) | |
download | pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar.gz pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar.bz2 pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar.lz pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar.xz pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.tar.zst pttbbs-d133742fac6c71dd64568b9a23911b2a9a1e0335.zip |
fix bug of ofo's waterball
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@26 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/io.c')
-rw-r--r-- | mbbsd/io.c | 24 |
1 files changed, 13 insertions, 11 deletions
@@ -1,4 +1,4 @@ -/* $Id: io.c,v 1.3 2002/03/14 08:17:45 in2 Exp $ */ +/* $Id: io.c,v 1.4 2002/03/14 20:49:38 in2 Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -336,18 +336,20 @@ int igetch() { return ch; case Ctrl('W'): - if(watermode >0) - { - water_which_flag=(water_which_flag+water_usies)%(water_usies+1); - if(water_which_flag==0) + if( WATERMODE(WATER_NEW) ){ + if( watermode > 0 ){ + water_which_flag=(water_which_flag+water_usies)%(water_usies+1); + if(water_which_flag==0) water_which = &water[0]; - else + else water_which = swater[water_which_flag-1]; - watermode = 1; - t_display_new(); - continue; - } - else return ch; + watermode = 1; + t_display_new(); + continue; + } + } + return ch; + default: return ch; } |