Skip to content

Commit

Permalink
Undo a mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoru committed May 1, 2015
1 parent 3a8c8d8 commit 72a02b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScoreKeeper7K.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ ScoreKeeperJudgment ScoreKeeper7K::hitNote(double ms){

if (ms <= judgment_time[SKJ_W1]){ // only COOLs restore o2jam lifebar
lifebar_o2jam = min(1.0, lifebar_o2jam + lifebar_o2jam_increment);
} else if (ms > judgment_time[SKJ_W1]) // BADs get some HP from you,
} else if (ms > judgment_time[SKJ_W2]) // BADs get some HP from you,
lifebar_o2jam = max(0.0, lifebar_o2jam - lifebar_o2jam_decrement / 6.0);

// std::cerr << ms << " " << judgment << " " << life_increment[judgment] << std::endl;
Expand Down

0 comments on commit 72a02b8

Please sign in to comment.