From e9905dec8021417faef8ab389d0df2a4e28beb9c Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 18 Nov 2006 17:07:05 +0000 Subject: (svn r7207) -Codechange: Pass the (unchanged) windowpointer to the console window and do it only once. --- console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'console.c') diff --git a/console.c b/console.c index 6cffe2b6c..093a575ae 100644 --- a/console.c +++ b/console.c @@ -152,7 +152,7 @@ static void IConsoleWndProc(Window *w, WindowEvent *e) break; case WKC_CTRL | WKC_RETURN: _iconsole_mode = (_iconsole_mode == ICONSOLE_FULL) ? ICONSOLE_OPENED : ICONSOLE_FULL; - IConsoleResize(); + IConsoleResize(w); MarkWholeScreenDirty(); break; case (WKC_CTRL | 'V'): @@ -283,9 +283,9 @@ void IConsoleFree(void) CloseConsoleLogIfActive(); } -void IConsoleResize(void) +void IConsoleResize(Window *w) { - _iconsole_win = FindWindowById(WC_CONSOLE, 0); + assert(_iconsole_win == w); switch (_iconsole_mode) { case ICONSOLE_OPENED: -- cgit v1.2.3-54-g00ecf