Skip to content

Commit

Permalink
uhmmm
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Jul 3, 2024
1 parent d1de311 commit d84f57c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/shared/images/HURTNOTE_assets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<SubTexture name="green hold piece0000" x="60" y="5" width="50" height="44"/>
<SubTexture name="green0000" x="277" y="5" width="157" height="154"/>
<SubTexture name="purple0000" x="5" y="164" width="154" height="157"/>
<SubTexture name="purple end hold0000" x="5" y="5" width="50" height="64"/>
<SubTexture name="purple hold end0000" x="5" y="5" width="50" height="64"/>
<SubTexture name="purple hold piece0000" x="60" y="5" width="50" height="44"/>
<SubTexture name="red hold end0000" x="5" y="5" width="50" height="64"/>
<SubTexture name="red hold piece0000" x="60" y="5" width="50" height="44"/>
Expand Down
2 changes: 1 addition & 1 deletion assets/shared/images/NOTE_assets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<SubTexture name="left press0017" x="1898" y="150" width="146" height="149"/>
<SubTexture name="left press0018" x="1898" y="150" width="146" height="149"/>
<SubTexture name="left press0019" x="1898" y="150" width="146" height="149"/>
<SubTexture name="purple end hold0000" x="1117" y="452" width="51" height="64"/>
<SubTexture name="purple hold end0000" x="1117" y="452" width="51" height="64"/>
<SubTexture name="purple hold piece0000" x="1337" y="457" width="51" height="44"/>
<SubTexture name="purple0000" x="0" y="398" width="154" height="157"/>
<SubTexture name="red hold end0000" x="952" y="452" width="51" height="64"/>
Expand Down
2 changes: 1 addition & 1 deletion source/funkin/game/Init.hx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Init extends flixel.FlxState
FlxG.switchState(new TitleState());
}

private inline function init():Void {
private function init():Void {
if (FlxG.save.data != null && FlxG.save.data.fullscreen)
FlxG.fullscreen = FlxG.save.data.fullscreen;
if (FlxG.save.data.weekCompleted != null)
Expand Down
1 change: 0 additions & 1 deletion source/funkin/game/objects/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ class Note extends FlxSprite

if (isSustainNote)
{
animation.addByPrefix('purpleholdend', 'purple end hold'); // ?????
animation.addByPrefix(colArray[noteData] + 'holdend', colArray[noteData] + ' hold end');
animation.addByPrefix(colArray[noteData] + 'hold', colArray[noteData] + ' hold piece');
}
Expand Down

0 comments on commit d84f57c

Please sign in to comment.