Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Mar 9, 2024
2 parents 801a6e5 + 4fb684d commit ecc0ccf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.3
haxe-version: 4.3.4
# Runs a set of commands using the runners shell
- name: Install Haxelib
run: |
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.3
haxe-version: 4.3.4
# Runs a set of commands using the runners shell
- name: Install Haxelib
run: |
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

- uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.3
haxe-version: 4.3.4
# Runs a set of commands using the runners shell
- name: Install Haxelib
run: |
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

- uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.3
haxe-version: 4.3.4
# Runs a set of commands using the runners shell
- name: Install Haxelib
run: |
Expand Down
9 changes: 5 additions & 4 deletions source/game/StrumNote.hx
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ class StrumNote extends FlxSkewedSprite

if(Options.getData("customNoteColors"))
noteColor = NoteColors.getNoteColor(NoteVariables.Other_Note_Anim_Stuff[keyCount - 1][noteData]);

colorSwap.r = noteColor[0];
colorSwap.g = noteColor[1];
colorSwap.b = noteColor[2];
if (noteColor != null){
colorSwap.r = noteColor[0];
colorSwap.g = noteColor[1];
colorSwap.b = noteColor[2];
}
}
}

Expand Down

0 comments on commit ecc0ccf

Please sign in to comment.