if ( komodo_nextheight() > 77777 && cashout > ROGUE_MAXCASHOUT )

This commit is contained in:
jl777
2019-03-25 22:12:33 -11:00
parent 05d376cddf
commit d08fedb7a4
2 changed files with 10 additions and 2 deletions

View File

@@ -3513,11 +3513,12 @@ int tetris(int argc, char **argv)
doupdate();
sleep_milli(10);
c = getch();
if ( c >= 0 )
if ( c != -1 || skipcount == 0x3fff )
{
if ( skipcount > 0 )
issue_games_events(gametxid,eventid-skipcount,skipcount | 0x4000);
issue_games_events(gametxid,eventid,c);
if ( c != -1 )
issue_games_events(gametxid,eventid,c);
skipcount = 0;
} else skipcount++;
eventid++;