Close file indices on color and string file parsing in menu-fn

This commit is contained in:
Marco Cawthorne 2019-08-11 19:52:19 -07:00
parent c2c98c54e5
commit 777c52eb7d
2 changed files with 2 additions and 0 deletions

View file

@ -118,5 +118,6 @@ void Colors_Init(void)
break;
}
}
fclose(fs_colors);
}
}

View file

@ -574,5 +574,6 @@ void Strings_Init(void)
m_reslbl[stof(argv(0))] = argv(1);
}
}
fclose(stringslst);
}
}