mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fix GCC warning.
SVN r2858 (trunk)
This commit is contained in:
parent
77709f1847
commit
2d5755a80e
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ void HMISong::CheckCaps(int tech)
|
|||
{
|
||||
Tracks[i].Enabled = false;
|
||||
// Track designations are stored in a 0-terminated array.
|
||||
for (int j = 0; j < countof(Tracks[i].Designation) && Tracks[i].Designation[j] != 0; ++j)
|
||||
for (unsigned int j = 0; j < countof(Tracks[i].Designation) && Tracks[i].Designation[j] != 0; ++j)
|
||||
{
|
||||
if (Tracks[i].Designation[j] == tech)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue