From: Christoph Lohmann <20h@r-36.net>
Date: Tue, 20 Aug 2013 16:18:48 +0000 (+0200)
Subject: Correcting the bitmask value check.
X-Git-Url: https://git.owens.tech/assets/112-editable-focus.html/assets/112-editable-focus.html/git?a=commitdiff_plain;h=8d21ced08527e79489f37b7a4ad19355bca2207c;p=st.git

Correcting the bitmask value check.
---

diff --git a/st.c b/st.c
index 1b01353..9733a9b 100644
--- a/st.c
+++ b/st.c
@@ -3714,7 +3714,7 @@ main(int argc, char *argv[]) {
 			xw.fh = (int)hr;
 		if(bitm & XNegative && xw.fx == 0)
 			xw.fx = -1;
-		if(bitm & XNegative && xw.fy == 0)
+		if(bitm & YNegative && xw.fy == 0)
 			xw.fy = -1;
 
 		if(xw.fh != 0 && xw.fw != 0)