MCPcopy Create free account
hub / github.com/Meridian59/Meridian59 / IsTextureNameInList

Function IsTextureNameInList

roomedit/source/objects.cpp:4089–4100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4087*/
4088
4089BOOL IsTextureNameInList (char *name, TextureInfo **list, SHORT numelems)
4090{
4091 SHORT n;
4092
4093 if (name[0] == 0)
4094 return TRUE;
4095
4096 for (n = 0; n < numelems; n++)
4097 if (strnicmp (name, list[n]->Name, MAX_BITMAPNAME) == 0)
4098 return TRUE;
4099 return FALSE;
4100}
4101
4102
4103

Callers 1

CheckTextureNamesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected