From 143e338d9fb99215c0b58f62e97379b8378b9d50 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 30 Apr 2020 12:28:10 +0200 Subject: [PATCH] - fixed bad console setup. --- source/core/console/c_console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/console/c_console.cpp b/source/core/console/c_console.cpp index b37ffda99..29394d9cf 100644 --- a/source/core/console/c_console.cpp +++ b/source/core/console/c_console.cpp @@ -984,7 +984,7 @@ void C_AdjustBottom () void C_NewModeAdjust () { - C_InitConsole (twod->GetWidth(), twod->GetHeight(), true); + C_InitConsole (screen->GetWidth(), screen->GetHeight(), true); C_FlushDisplay (); C_AdjustBottom (); }