Fix another ob1 error.
This commit is contained in:
parent
1e59d6b476
commit
9714c9fc2a
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -1027,7 +1027,7 @@ L2607:
|
|||
|
||||
/* If a turn threshold has been met, apply penalties and tell
|
||||
* the player about it. */
|
||||
for (int i = turn_threshold_count; i >= 0; --i)
|
||||
for (int i = 0; i < turn_threshold_count; ++i)
|
||||
{
|
||||
if (game.turns == turn_thresholds[i].threshold + 1)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue