From 79bb2648366b7b57e3e44bd3443fea112537b6cd Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 13 Jan 2022 00:46:09 -0700 Subject: [PATCH] move two-column credits left --- src/hollywoo_flixel/FlxDirector.kiss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hollywoo_flixel/FlxDirector.kiss b/src/hollywoo_flixel/FlxDirector.kiss index a57a219..e1d2e50 100644 --- a/src/hollywoo_flixel/FlxDirector.kiss +++ b/src/hollywoo_flixel/FlxDirector.kiss @@ -392,9 +392,9 @@ ((TwoColumn col1 col2) (let [t1 (_ctext col1 twoColSize) t2 (_ctext col2 twoColSize)] - (set t1.x (- (/ 1280 2) t1.width (/ twoColumnGap 2))) + (set t1.x (- (* 1280 0.3) t1.width (/ twoColumnGap 2))) (set t1.y textY) - (set t2.x (+ (/ 1280 2) (/ twoColumnGap 2))) + (set t2.x (+ (* 1280 0.3) (/ twoColumnGap 2))) (set t2.y textY)) (+= textY twoColSize creditMargin)) // Left-justified, centered, right-justified three column lines