Skip to content

Commit 5f0ffdf

Browse files
committedApr 6, 2020
Player.* changed score back to 501
1 parent 51c385e commit 5f0ffdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Player.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void Player::ReduceScore(ushort score) {
3939
}
4040

4141
void Player::Reset(bool resetScore) {
42-
if (resetScore) _score = 101;
42+
if (resetScore) _score = 501;
4343
_bust = false;
4444
_miss = false;
4545
_nonDoubleEnd = false;

‎Player.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Player {
1616
private:
1717
string _name = "";
1818
ushort _accuracy = 0;
19-
short _score = 101;
19+
short _score = 501;
2020
bool _isCPU = true;
2121
Target _lastTarget;
2222
Target _lastHit;

0 commit comments

Comments
 (0)
Please sign in to comment.