1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-06-30 15:47:05 +00:00

fix the one random slice of pixels where the bg doesnt show... lol

This commit is contained in:
Cameron Taylor 2024-05-30 21:11:17 -04:00
parent 62a3ddea3c
commit 7a2f3c81a1

View file

@ -124,7 +124,7 @@ class TitleState extends MusicBeatState
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();
add(bg);