Merge branch 'NetHack-3.6.2-beta01' into NetHack-3.6.2

This commit is contained in:
nhmall
2018-11-10 15:09:02 -05:00
24 changed files with 231 additions and 74 deletions

View File

@@ -433,6 +433,8 @@ tgetch()
coord cc;
DWORD count;
really_move_cursor();
if (iflags.debug_fuzzer)
return randomkey();
return (program_state.done_hup)
? '\033'
: keyboard_handler.pCheckInput(
@@ -447,6 +449,8 @@ int *x, *y, *mod;
coord cc;
DWORD count;
really_move_cursor();
if (iflags.debug_fuzzer)
return randomkey();
ch = (program_state.done_hup)
? '\033'
: keyboard_handler.pCheckInput(
@@ -704,7 +708,7 @@ cl_eos()
void
tty_nhbell()
{
if (flags.silent)
if (flags.silent || iflags.debug_fuzzer)
return;
Beep(8000, 500);
}
@@ -718,6 +722,9 @@ tty_delay_output()
clock_t goal;
int k;
if (iflags.debug_fuzzer)
return;
goal = 50 + clock();
back_buffer_flip();
while (goal > clock()) {