Remove unneeded index restriction from GetUDMFInt/Fixed

This commit is contained in:
Randy Heit 2015-02-20 20:42:30 -06:00
parent a64ebc720b
commit 9721c025c1

View file

@ -343,8 +343,6 @@ int GetUDMFInt(int type, int index, const char *key)
{
assert(type >=0 && type <=3);
if (index > 0)
{
FUDMFKeys *pKeys = UDMFKeys[type].CheckKey(index);
if (pKeys != NULL)
@ -355,7 +353,6 @@ int GetUDMFInt(int type, int index, const char *key)
return pKey->IntVal;
}
}
}
return 0;
}
@ -363,8 +360,6 @@ fixed_t GetUDMFFixed(int type, int index, const char *key)
{
assert(type >=0 && type <=3);
if (index > 0)
{
FUDMFKeys *pKeys = UDMFKeys[type].CheckKey(index);
if (pKeys != NULL)
@ -375,7 +370,6 @@ fixed_t GetUDMFFixed(int type, int index, const char *key)
return FLOAT2FIXED(pKey->FloatVal);
}
}
}
return 0;
}