mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed: MODELDEF's FrameIndex command was case sensitive.
This commit is contained in:
parent
a93cb0bfab
commit
da87a34a6f
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ void gl_InitModels()
|
||||||
smf.sprite = -1;
|
smf.sprite = -1;
|
||||||
for (i = 0; i < (int)sprites.Size (); ++i)
|
for (i = 0; i < (int)sprites.Size (); ++i)
|
||||||
{
|
{
|
||||||
if (strncmp (sprites[i].name, sc.String, 4) == 0)
|
if (strnicmp (sprites[i].name, sc.String, 4) == 0)
|
||||||
{
|
{
|
||||||
if (sprites[i].numframes==0)
|
if (sprites[i].numframes==0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue