Skip to content

Commit

Permalink
Update ChartingState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Dec 6, 2024
1 parent 5cf55db commit 5e2f3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/states/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class ChartingState extends ExtendableState {
var gridBlackLine:FlxSprite = new FlxSprite(gridBG.x + gridBG.width / 2, gridBG.y).makeGraphic(2, Std.int(gridBG.height), FlxColor.BLACK);
add(gridBlackLine);

strumLine = new FlxSprite(gridBG.x, 50).makeGraphic(gridBG.width, 4);
strumLine = new FlxSprite(gridBG.x, 50).makeGraphic(Std.int(gridBG.width), 4);
add(strumLine);

var prototypeNotice:FlxText = new FlxText(5, FlxG.height - 24, 0, 'Charter v0.2-rc1 // Functionality is subject to change.', 12);
Expand Down

0 comments on commit 5e2f3f6

Please sign in to comment.