hlfw.ca

binpack

Download patch

ref: 9fc3e8f6a473310f06826ae83815b931476787eb
parent: 27522d94d3aa7689759a45a8e10c39a7bd666e00
author: Halfwit <michaelmisch1985@gmail.com>
date: Sun Sep 23 09:17:23 PDT 2018

Clear up some of the wording in comments

Signed-off-by: Halfwit <michaelmisch1985@gmail.com>

--- a/binpack.c
+++ b/binpack.c
@@ -116,7 +116,7 @@
 
 	# Second window
 	First we test #3 to fit, against the secont point (which is the bottom right of #1). It doesn't fit, as #2 is blocking.
-	We now test future points for >= x && >= y points. The top right of #2 meets both reqs, We use that same x axis to place window 3, since it won't fit.
+	We now test future points for >= x && >= y points. The top right of #2 meets both reqs, We use that same x axis to place window 3.
 
 */
 
@@ -127,5 +127,6 @@
 		out[i].y = 0;
 		out[i].wid = c[i].wid;
 	}
+
 	return true;
 }