Skip to content

Commit

Permalink
hhhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Jul 26, 2024
1 parent c935609 commit 1624b35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/game/Checker.hx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Checker extends GameSprite {
this.checked = checked;

loadGraphic(Paths.image('options/checker'), true, 400, 400);
scale.set(0.6, 0.6);
scale.set(0.3, 0.3);

animation.add("check", [0], 1);
animation.add("uncheck", [1], 1);
Expand Down
6 changes: 3 additions & 3 deletions source/states/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ChartingState extends ExtendableState {
var saveButton:FlxButton = new FlxButton(FlxG.width - 110, 10, "Save Chart", saveChart);
add(saveButton);

bpmStepper = new FlxUINumericStepper(FlxG.width - 110, 50, 100, 20, 60, 300, song.bpm, 1, updateBPM);
bpmStepper = new FlxUINumericStepper(FlxG.width - 110, 50, 100, 20, 60, 300, song.bpm, 0, updateBPM);
bpmStepper.stepSize = 1;
add(bpmStepper);
}
Expand Down Expand Up @@ -183,7 +183,7 @@ class ChartingState extends ExtendableState {

function deleteNote(note:Note):Void {
for (sectionNote in song.notes[curSection].sectionNotes) {
if (sectionNote.noteStrum == note.strum && sectionNote.noteData == getDirection(note.direction)) {
if (sectionNote.noteStrum == note.strum && sectionNote.noteData == getDirection(note.dir)) {
song.notes[curSection].sectionNotes.remove(sectionNote);
}
}
Expand All @@ -195,7 +195,7 @@ class ChartingState extends ExtendableState {
var swagNum:Int = 0;

for (sectionNote in song.notes[curSection].sectionNotes) {
if (sectionNote.noteStrum == note.strum && sectionNote.noteData == getDirection(note.direction)) {
if (sectionNote.noteStrum == note.strum && sectionNote.noteData == getDirection(note.dir)) {
curSelectedNote = sectionNote;
}

Expand Down

0 comments on commit 1624b35

Please sign in to comment.