diff options
Diffstat (limited to 'lunar.c')
-rw-r--r-- | lunar.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1671,7 +1671,7 @@ static XFuncControl ProcessHiScore(void) if ((keymap[LEFT])&&(!bounce)) { - bounce=30; + bounce=10; if (let==hisc_let) let=hisc_let+strlen(hisc_let)-1; else @@ -1680,7 +1680,7 @@ static XFuncControl ProcessHiScore(void) if ((keymap[RIGHT])&&(!bounce)) { - bounce=30; + bounce=10; if (!(*++let)) let=hisc_let; } @@ -1690,11 +1690,11 @@ static XFuncControl ProcessHiScore(void) case THRUST: len++; break; - case NONE: - bounce=0; - break; } + if (!keymap[LEFT] && !keymap[RIGHT] && !keymap[THRUST]) + bounce=0; + if (bounce) bounce--; |