From a1e27b16061ddf1c00ea38473d3783675b95314b Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 3 May 2005 11:14:06 +0000 Subject: [PATCH] (svn r2258) - Fix (regression): game crashes on resizing window. Windows is a bit too aggressive with its _assume(0), and it did not even belong there --- console.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/console.c b/console.c index 9be86614e4..c07fdc4477 100644 --- a/console.c +++ b/console.c @@ -272,8 +272,6 @@ void IConsoleResize(void) _iconsole_win->height = _screen.height - ICON_BOTTOM_BORDERWIDTH; _iconsole_win->width = _screen.width; break; - default: - NOT_REACHED(); } MarkWholeScreenDirty();