Removing assertion that does not hold under all scenarios.

When we save gamestate as part of making an insurance snapshot, we will
save message history which will clear toplines but leaving window state
in tack including the need for more.
This commit is contained in:
Bart House
2019-07-13 10:53:53 -07:00
parent 90f5aa91b7
commit c44ad5645d

View File

@@ -259,7 +259,7 @@ register const char *bp;
&& cw->cury == 0
&& n0 + (int) strlen(toplines) + 3 < CO - 8 /* room for --More-- */
&& (notdied = strncmp(bp, "You die", 7)) != 0) {
nhassert((long) strlen(toplines) == cw->curx);
/* nhassert((long) strlen(toplines) == cw->curx); */
Strcat(toplines, " ");
Strcat(toplines, bp);
cw->curx += 2;