Skip to content

Commit

Permalink
easier scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfwood committed Oct 24, 2010
1 parent ef3c2b4 commit a915f68
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arrowSection.d
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ArrowSection {

TextFileInput chartFile;

long misses, good, great;
long misses, good, great, actualMisses;

bool noMoreBeats;

Expand Down Expand Up @@ -117,7 +117,8 @@ class ArrowSection {

if(beats.length > beatsOnScreen){
// score Misses on dis
misses += lut[beats[0].arrows];
misses++;
actualMisses += lut[beats[0].arrows];

if(beats[0].end){noMoreBeats = true;}

Expand Down

0 comments on commit a915f68

Please sign in to comment.