From e992085bfa82ec41f15f3dacfdd57706d7b03ee6 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Mon, 10 Jan 2022 18:09:29 -0700 Subject: [PATCH] size scene backgrounds UP if need be --- .../hollywoo-flixel/src/hollywoo_flixel/SceneFlxState.kiss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/hollywoo-flixel/src/hollywoo_flixel/SceneFlxState.kiss b/projects/hollywoo-flixel/src/hollywoo_flixel/SceneFlxState.kiss index f0aadfca..53f02efb 100644 --- a/projects/hollywoo-flixel/src/hollywoo_flixel/SceneFlxState.kiss +++ b/projects/hollywoo-flixel/src/hollywoo_flixel/SceneFlxState.kiss @@ -24,8 +24,7 @@ (method &override :Void create [] (super.create) - (when (> setSprite.width FlxG.width) - (setSprite.setGraphicSize FlxG.width)) + (setSprite.setGraphicSize FlxG.width) (when (> setSprite.height FlxG.height) (setSprite.setGraphicSize 0 FlxG.height)) (setSprite.updateHitbox)