Skip to content

Commit cb09643

Browse files
committed
fix score
1 parent 4e9e0b0 commit cb09643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/score.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module ScoreModule (
3636
// Reset the game if the score gets to 99999
3737
score_int[4] <= 0;
3838
end else begin
39-
score_int[4] <= score_int[3] + 1;
39+
score_int[4] <= score_int[4] + 1;
4040
score_int[3] <= 0;
4141
end
4242
end else begin

0 commit comments

Comments
 (0)