Skip bailout for replay

This commit is contained in:
jl777
2019-02-10 09:10:40 -11:00
parent 80a610cdaa
commit cf3a8e6e9a
2 changed files with 3 additions and 2 deletions

View File

@@ -270,7 +270,8 @@ over:
if ( rs->guiflag != 0 && rs->needflush == 0 ) if ( rs->guiflag != 0 && rs->needflush == 0 )
rs->needflush = (uint32_t)time(NULL); rs->needflush = (uint32_t)time(NULL);
q_comm = FALSE; q_comm = FALSE;
rogue_bailout(); if ( rs->guiflag != 0 )
rogue_bailout();
return; return;
when 'i': after = FALSE; inventory(rs,pack, 0); when 'i': after = FALSE; inventory(rs,pack, 0);
when 'I': after = FALSE; picky_inven(rs); when 'I': after = FALSE; picky_inven(rs);

View File

@@ -608,8 +608,8 @@ quit(int sig)
} }
else else
{ {
fprintf(stderr,"done!\n");
score(rs,purse, 1, 0); score(rs,purse, 1, 0);
fprintf(stderr,"done!\n");
} }
} }
else else