From 05a54504a68a03e98fd1d93a3b893413961d8308 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Sat, 23 Feb 2008 06:23:18 +0000
Subject: [PATCH] Remove unised variables.

---
 src/conio/bitmap_con.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/conio/bitmap_con.c b/src/conio/bitmap_con.c
index 55ccb84703..04cfc13cfb 100644
--- a/src/conio/bitmap_con.c
+++ b/src/conio/bitmap_con.c
@@ -614,8 +614,6 @@ static void bitmap_draw_cursor()
 /* Called from main thread only */
 void bitmap_gotoxy(int x, int y)
 {
-	static int lx=-1,ly=-1;
-
 	if(!bitmap_initialized)
 		return;
 	/* Move cursor location */
@@ -627,8 +625,6 @@ void bitmap_gotoxy(int x, int y)
 		vstat.curs_col=x+cio_textinfo.winleft-1;
 		vstat.curs_row=y+cio_textinfo.wintop-1;
 		pthread_mutex_unlock(&vstatlock);
-		lx=vstat.curs_col;
-		ly=vstat.curs_row;
 	}
 }
 
-- 
GitLab