Merge pull request #1349 from ActualMandM/kade-EverybodyGetUpItsTimeToSlamNow

fix FNF logo dissapearing when watermarks are disabled
This commit is contained in:
Kade M 2021-07-19 21:37:46 -07:00 committed by GitHub
commit 0b84fb59cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,10 +115,11 @@ class TitleState extends MusicBeatState
// bg.updateHitbox();
add(bg);
logoBl = new FlxSprite(-150, 1500);
if(Main.watermarks) {
if (Main.watermarks) {
logoBl = new FlxSprite(-150, 1500);
logoBl.frames = Paths.getSparrowAtlas('KadeEngineLogoBumpin');
} else {
logoBl = new FlxSprite(-150, -100);
logoBl.frames = Paths.getSparrowAtlas('logoBumpin');
}
if(FlxG.save.data.antialiasing)