syntax error

This commit is contained in:
Enno Rehling 2005-11-25 22:17:41 +00:00
parent bb1e86ebb4
commit cd70cfcb8b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ void
enable_skill(const char * skname, boolean value)
{
skill_t sk;
for (sk=0;sk!=MAXSKILLS) {
for (sk=0;sk!=MAXSKILLS;++sk) {
if (strcmp(skillnames[sk], skname)==0) {
skill_enabled[sk] = value;
return;