From 1eef79ef64c320ec1b6546331873f389af8544c0 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 11 Nov 2003 20:20:02 +0000 Subject: [PATCH] Made the window the right size Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1432 --- src/debug/debug_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/debug_gui.cpp b/src/debug/debug_gui.cpp index 840233ce..11105712 100644 --- a/src/debug/debug_gui.cpp +++ b/src/debug/debug_gui.cpp @@ -216,7 +216,7 @@ void DBGUI_StartUp(void) { nodelay(dbg.win_main,true); keypad(dbg.win_main,true); #ifndef WIN32 - resizeterm(50,80); + resizeterm(50,81); touchwin(dbg.win_main); old_cursor_state = curs_set(0); #endif