diff --git a/source/ChartingState.hx b/source/ChartingState.hx index cf7e1be..b8ddf75 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1515,9 +1515,9 @@ class ChartingState extends MusicBeatState var increase:Float = 0; if (amount < 0) - increase = -0.04; + increase = -0.02; else - increase = 0.04; + increase = 0.02; zoomFactor += increase; diff --git a/source/PlayState.hx b/source/PlayState.hx index 3415b4c..edbfe06 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1443,8 +1443,10 @@ class PlayState extends MusicBeatState { if (value == curStage) { + trace(value + " - " + curStage); introAlts = introAssets.get(value); - altSuffix = '-pixel'; + if (curStage.contains('school')) + altSuffix = '-pixel'; } } @@ -1671,7 +1673,7 @@ class PlayState extends MusicBeatState ana.hitJudge = Ratings.CalculateRating(noteDiff, Math.floor((PlayStateChangeables.safeFrames / 60) * 1000)); ana.nearestNote = [coolNote.strumTime, coolNote.noteData, coolNote.sustainLength]; } - else if (!FlxG.save.data.ghost) + else if (!FlxG.save.data.ghost && songStarted) { noteMiss(data, null); ana.hit = false;