Merge pull request #582 from FunkinCrew/title-bg-fix

fix the one random slice of pixels where the bg doesnt show... lol (FUNK-239)
This commit is contained in:
Cameron Taylor 2024-05-31 18:08:05 -04:00 committed by GitHub
commit a1e34123f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -124,7 +124,7 @@ class TitleState extends MusicBeatState
persistentUpdate = true; persistentUpdate = true;
var bg:FunkinSprite = new FunkinSprite().makeSolidColor(FlxG.width, FlxG.height, FlxColor.BLACK); var bg:FunkinSprite = new FunkinSprite(-1).makeSolidColor(FlxG.width + 2, FlxG.height, FlxColor.BLACK);
bg.screenCenter(); bg.screenCenter();
add(bg); add(bg);