Skip to content

Commit

Permalink
the fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesCatYT committed Nov 5, 2023
1 parent 2abc399 commit 579fd48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/states/ThanksState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ThanksState extends MusicBeatState
bg.setGraphicSize(Std.int(bg.width * 1.1));
bg.updateHitbox();
bg.screenCenter();
bg.antialiasing = ClientPrefs.data.globalAntialiasing;
bg.antialiasing = ClientPrefs.data.antialiasing;
add(bg);

var theLogoThing:FlxSprite = new FlxSprite(FlxG.width, 0).loadGraphic(Paths.image('logo'));
Expand All @@ -37,7 +37,7 @@ class ThanksState extends MusicBeatState
theLogoThing.x -= theLogoThing.frameHeight;
theLogoThing.y -= 180;
theLogoThing.alpha = 0.8;
theLogoThing.antialiasing = ClientPrefs.data.globalAntialiasing;
theLogoThing.antialiasing = ClientPrefs.data.antialiasing;
add(theLogoThing);

var txt:FlxText = new FlxText(0, 0, FlxG.width,
Expand Down

0 comments on commit 579fd48

Please sign in to comment.