1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix console exit for stdin/out

This commit is contained in:
Ted John
2018-03-11 21:21:27 +00:00
parent ec9e812ea7
commit 395f124a0b
3 changed files with 1 additions and 7 deletions

View File

@@ -94,7 +94,7 @@ static sint32 cc_clear(InteractiveConsole &console, const utf8 **argv, sint32 ar
static sint32 cc_hide(InteractiveConsole &console, const utf8 **argv, sint32 argc)
{
console_close();
console.Close();
return 0;
}

View File

@@ -123,7 +123,6 @@ public:
// Old pass-through functions for in-game console
bool console_is_open();
void console_open();
void console_close();
void console_toggle();
void console_update();
void console_draw(rct_drawpixelinfo *dpi);

View File

@@ -322,11 +322,6 @@ void console_open()
_inGameConsole.Open();
}
void console_close()
{
_inGameConsole.Close();
}
void console_toggle()
{
_inGameConsole.Toggle();