diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-05-24 12:02:47 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-05-24 12:02:47 +0800 |
commit | 049156ab30cbd1b216659431c8562008c6d7c8ac (patch) | |
tree | 326f92bd5d2546d85aaf947d19809730aeb122bd /mbbsd | |
parent | 2a754ed8d38bfe6b64aa74c11eced827ba97be83 (diff) | |
download | pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar.gz pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar.bz2 pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar.lz pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar.xz pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.tar.zst pttbbs-049156ab30cbd1b216659431c8562008c6d7c8ac.zip |
- temporary disable the 'only system key to break' in LG mode, for backward compatibility.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4465 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/pmore.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c index 96ca4534..4d3c6213 100644 --- a/mbbsd/pmore.c +++ b/mbbsd/pmore.c @@ -4071,11 +4071,14 @@ mf_movieNextFrame() int c; mf_float2tv(MOVIE_MIN_FRAMECLK, &tv); + c = mf_movieWaitKey(&tv, 0); + // temporary disable this due to compatibility - +#if 0 // XXX TODO when using interactive mode, // allow only special keys to break. - c = mf_movieWaitKey(&tv, 0); if (mfmovie.interactive && c != 1) // c == 1: unknown error c = mf_movieIsSystemBreak(c); +#endif if (c) { |