- fixed typo in TexMan.GetSize.

This commit is contained in:
Christoph Oelckers 2017-03-05 00:28:15 +01:00
parent cfafbfe4f2
commit 600f57405f
1 changed files with 1 additions and 1 deletions

View File

@ -1208,7 +1208,7 @@ DEFINE_ACTION_FUNCTION(_TexMan, GetSize)
}
else x = y = -1;
if (numret > 0) ret[0].SetInt(x);
if (numret > 1) ret[1].SetInt(x);
if (numret > 1) ret[1].SetInt(y);
return MIN(numret, 2);
}