Skip to content

Commit

Permalink
fix shadow's work
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolka9144 committed Oct 19, 2024
1 parent 4aa1aab commit 56881ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ xsi:schemaLocation="http://lime.openfl.org/project/1.0.4 http://lime.openfl.org/
<!-- __________________________ Game Assets & Etc. __________________________ -->

<!-- Turn on Crash Handler -->
<define name="CRASH_HANDLER" if="desktop release" />
<define name="CRASH_HANDLER" if="desktop" unless="debug" />

<!--FNF is changing openAL config, because the default one is broken. lol. -->
<assets path="assets/alsoft.conf" unless="windows" />
Expand Down
2 changes: 1 addition & 1 deletion source/objects/NoteSplash.hx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class NoteSplash extends FlxSprite

var skin:String = splash;
if (skin == null || skin.length < 1)
skin = try PlayState.SONG.splashSkin catch(e) null;
skin = PlayState.SONG?.splashSkin;

if (skin == null || skin.length < 1)
skin = DEFAULT_SKIN + getSplashSkinPostfix();
Expand Down

0 comments on commit 56881ff

Please sign in to comment.