summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-11-19 22:24:18 +0000
committerDarkvater <Darkvater@openttd.org>2006-11-19 22:24:18 +0000
commit53b02577b92ed8ca5d4067568471101694c067b7 (patch)
treeb46bb1e03e00ce3e9e68695f1e77932e887415a6 /console.c
parent0470883f8270d3f5fb9eb05ebb8ce90092c46c74 (diff)
downloadopenttd-53b02577b92ed8ca5d4067568471101694c067b7.tar.xz
(svn r7219) -Fix: Several warnings by gcc introduced in r7206 which MSVC found not of a problem. Thanks Tron
Diffstat (limited to 'console.c')
-rw-r--r--console.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/console.c b/console.c
index 093a575ae..44fd77822 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(w);
+ IConsoleResize();
MarkWholeScreenDirty();
break;
case (WKC_CTRL | 'V'):
@@ -283,10 +283,8 @@ void IConsoleFree(void)
CloseConsoleLogIfActive();
}
-void IConsoleResize(Window *w)
+void IConsoleResize(void)
{
- assert(_iconsole_win == w);
-
switch (_iconsole_mode) {
case ICONSOLE_OPENED:
_iconsole_win->height = _screen.height / 3;