Skip to content

Commit 8062bdc

Browse files
committed
fixes
Fix Kerning: Eiyeron#7 Fix Warnings: Eiyeron#6
1 parent 0c1f42c commit 8062bdc

12 files changed

Lines changed: 15 additions & 22 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export/
2+
/export/
3+
/.unittest/
24
.vscode/
2.67 KB
Binary file not shown.
6.06 KB
Binary file not shown.
22 KB
Binary file not shown.
1.65 KB
Binary file not shown.
4.65 KB
Binary file not shown.
10.3 KB
Binary file not shown.

samples/decorating/source/PlayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import flixel.util.FlxColor;
88
import flixel.tweens.FlxTween;
99
import flixel.tweens.FlxEase;
1010
import flixel.system.FlxAssets;
11-
import flixel.system.FlxSound;
11+
import flixel.sound.FlxSound;
1212

1313
import textbox.Textbox;
1414
import textbox.Settings;

samples/demo/source/PlayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import flixel.tweens.FlxTween;
88
import flixel.tweens.FlxTween.FlxTweenType;
99
import flixel.tweens.FlxEase;
1010
import flixel.system.FlxAssets;
11-
import flixel.system.FlxSound;
11+
import flixel.sound.FlxSound;
1212

1313
import textbox.Textbox;
1414
import textbox.Settings;

test/TestMain.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class TestMain
2222
public function new()
2323
{
2424
// OpenFL/Flixel init
25-
Lib.current.stage.addChild(new FlxGame(800, 600, null, 1, 60, 60, true));
25+
Lib.current.stage.addChild(new FlxGame(800, 600, null, 60, 60, true));
2626

27-
var suites = new Array<Class<massive.munit.TestSuite>>();
27+
var suites = new Array<Class<massive.munit.TestSuite>>();
2828
suites.push(TestSuite);
2929

3030
#if MCOVER

0 commit comments

Comments
 (0)