Fix another ob1 error.

This commit is contained in:
Jason S. Ninneman 2017-06-20 16:09:33 -07:00 committed by Eric S. Raymond
parent 1e59d6b476
commit 9714c9fc2a

2
main.c
View file

@ -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)
{