summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-03-10 22:03:55 +0000
committerDarkvater <darkvater@openttd.org>2005-03-10 22:03:55 +0000
commit0b82467cf19b9b586fdf8793c9e84eb8fc167bda (patch)
tree5eeb5bc4865d2e3023975ef95a108aa354d5be3d /console.c
parenta0ef37e7bccb18a8569962fd5690f288a888b3fa (diff)
downloadopenttd-0b82467cf19b9b586fdf8793c9e84eb8fc167bda.tar.xz
(svn r1987) - Cleanup: remove the last remaining dinosaurs of a dead console
Diffstat (limited to 'console.c')
-rw-r--r--console.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/console.c b/console.c
index 11a850923..338d3de79 100644
--- a/console.c
+++ b/console.c
@@ -31,11 +31,6 @@ static uint16 _iconsole_cbuffer[ICON_BUFFER + 1];
static Textbuf _iconsole_cmdline;
static byte _iconsole_scroll;
-// ** console cursor ** //
-static bool _icursor_state;
-static byte _icursor_rate;
-static byte _icursor_counter;
-
// ** stdlib ** //
byte _stdlib_developer = 1;
bool _stdlib_con_developer = false;
@@ -202,9 +197,6 @@ void IConsoleInit(void)
_iconsole_inited = true;
_iconsole_mode = ICONSOLE_CLOSED;
_iconsole_win = NULL;
- _icursor_state = false;
- _icursor_rate = 5;
- _icursor_counter = 0;
#ifdef ENABLE_NETWORK /* Initialize network only variables */
_redirect_console_to_client = 0;