From 983838c54abca67553cdbe899f0c22013959822c Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Sun, 1 May 2011 04:52:19 +0000
Subject: [PATCH] Do not force initial vstat.scaling to 1.

---
 src/conio/x_events.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/conio/x_events.c b/src/conio/x_events.c
index 5392d9979c..b68382d91b 100644
--- a/src/conio/x_events.c
+++ b/src/conio/x_events.c
@@ -308,7 +308,8 @@ static int video_init()
     if(init_window())
 		return(-1);
 
-	vstat.scaling=1;
+	if(vstat.scaling<1)
+		vstat.scaling=1;
 	bitmap_init(x11_drawrect, x11_flush);
 
     /* Initialize mode 3 (text, 80x25, 16 colors) */
-- 
GitLab