We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce799a commit 78a0792Copy full SHA for 78a0792
1 file changed
src/funkin/states/gameplay/PlayState.hx
@@ -82,7 +82,7 @@ class PlayState extends FunkinState
82
// Maybe we can repurpose for a minimal mode?
83
84
var greyBG:FunkinSprite = new FunkinSprite();
85
- greyBG.loadTexture('#323232', FlxG.width * 1.5, FlxG.height * 1.5);
+ greyBG.loadTexture('#323232', Std.int(FlxG.width * 1.5), Std.int(FlxG.height * 1.5));
86
greyBG.screenCenter();
87
add(greyBG);
88
0 commit comments