diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-16 17:43:06 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-16 17:43:06 +0800 |
commit | 3d0fa7c79b4d5d08868f32f44052392d03638074 (patch) | |
tree | 76269870dd6e88e61b21ad23fbe613dc9853adfa /mbbsd/io.c | |
parent | 62b898b733dd7b8acfaefc287c513668a007f232 (diff) | |
download | pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar.gz pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar.bz2 pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar.lz pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar.xz pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.tar.zst pttbbs-3d0fa7c79b4d5d08868f32f44052392d03638074.zip |
Fix error for compiling without defining PLAY_ANGEL.
git-svn-id: http://opensvn.csie.org/pttbbs/branches/scw.angel@1994 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/io.c')
-rw-r--r-- | mbbsd/io.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -322,8 +322,7 @@ igetch() } } return ch; - //case '\n': /* Ptt§â \n®³±¼ */ - // continue; + case Ctrl('T'): if (WATERMODE(WATER_ORIG) || WATERMODE(WATER_NEW)) { if (watermode > 0) { @@ -371,8 +370,10 @@ igetch() } return ch; - case Ctrl('J'): + case Ctrl('J'): /* Ptt §â \n ®³±¼ */ +#ifdef PLAY_ANGEL CallAngel(); +#endif continue; case IAC: |