Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/tyindev/Indev-Engine
Browse files Browse the repository at this point in the history
  • Loading branch information
yophlox committed May 28, 2024
2 parents 890bc8b + 1b69bbf commit 66c7cc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Alphabet.hx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class Alphabet extends FlxSpriteGroup
if (FlxG.random.bool(40))
{
var daSound:String = "GF_";
FlxG.sound.play('assets/sounds/' + daSound + FlxG.random.int(1, 4) + game.states.TitleState.soundExt, 0.4);
FlxG.sound.play('contents/sounds/' + daSound + FlxG.random.int(1, 4) + game.states.TitleState.soundExt, 0.4);
}

add(letter);
Expand Down Expand Up @@ -245,7 +245,7 @@ class AlphaCharacter extends FlxSprite
public function new(x:Float, y:Float)
{
super(x, y);
var tex = FlxAtlasFrames.fromSparrow('assets/images/alphabet.png', 'assets/images/alphabet.xml');
var tex = FlxAtlasFrames.fromSparrow('contents/images/alphabet.png', 'contents/images/alphabet.xml');
frames = tex;

antialiasing = true;
Expand Down

0 comments on commit 66c7cc5

Please sign in to comment.