summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2005-01-16 18:19:33 +0000
committerdarkvater <darkvater@openttd.org>2005-01-16 18:19:33 +0000
commita1e94b67d5c10c102b4fe1361e2445f1bceecf47 (patch)
tree5e72298cb7925377eeac485f5f2e3e75ebef9d4f /console_cmds.c
parent85213673734ddaf2bd02f6be74341a5e0eeda47c (diff)
downloadopenttd-a1e94b67d5c10c102b4fe1361e2445f1bceecf47.tar.xz
(svn r1547) -Feature: windows dedicated (if anyone would run that, but ok), is now functioning correctly. There is no other way but to create a new thread, but that's only MS braindeadness
-Fix: [1103113] font size changing. Dedicated server did not have code filtering, 'tab' could result in bigger fonts -Fix: [1103069] console backspace key with ded server; fixed due to normal console handling -Fix: [1101963] console in dedicated server; see above -Fix: dedicated server also writes to log file if active
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 342fae159..898c07f6e 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -607,17 +607,7 @@ DEF_CONSOLE_CMD(ConReturn)
/* **************************** */
/* default console commands */
/* **************************** */
-bool CloseConsoleLogIfActive()
-{
- extern FILE* _iconsole_output_file;
- if (_iconsole_output_file != NULL) {
- IConsolePrintF(_iconsole_color_default, "file output complete");
- fclose(_iconsole_output_file);
- return true;
- }
-
- return false;
-}
+extern bool CloseConsoleLogIfActive(void);
DEF_CONSOLE_CMD(ConScript)
{