summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'console.c')
-rw-r--r--console.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/console.c b/console.c
index 13a163667..35945356a 100644
--- a/console.c
+++ b/console.c
@@ -65,8 +65,8 @@ static void IConsoleWndProc(Window *w, WindowEvent *e)
{
switch(e->event) {
- case WE_PAINT:
-
+ case WE_PAINT:
+
GfxFillRect(w->left,w->top,w->width,w->height-1,0);
{
int i=_iconsole_scroll;
@@ -100,6 +100,11 @@ static void IConsoleWndProc(Window *w, WindowEvent *e)
}
break;
+ case WE_DESTROY:
+ _iconsole_win=NULL;
+ _iconsole_mode=ICONSOLE_CLOSED;
+ break;
+
case WE_KEYPRESS:
e->keypress.cont=false;
if (e->keypress.keycode == (WKC_UP))
@@ -257,7 +262,7 @@ void IConsoleSwitch()
}
void IConsoleClose() {
-if (_iconsole_mode==ICONSOLE_OPENED) IConsoleSwitch();
+if (_iconsole_mode==ICONSOLE_OPENED) IConsoleSwitch();
_iconsole_mode=ICONSOLE_CLOSED;
}
@@ -333,7 +338,7 @@ if (_iconsole_win!=NULL) SetWindowDirty(_iconsole_win);
}
-void IConsolePrintF(byte color_code, const char *s, ...)
+void CDECL IConsolePrintF(byte color_code, const char *s, ...)
{
va_list va;
char buf[1024];