mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Use correct string methods.
This commit is contained in:
@ -188,7 +188,7 @@ UInt16 plFactory::FindClassIndex(const char* className)
|
||||
int i;
|
||||
for( i = 0; i < theFactory->fCreators.GetCount(); i++ )
|
||||
{
|
||||
if( theFactory->fCreators[i] && !_stricmp(className, theFactory->fCreators[i]->ClassName()) )
|
||||
if( theFactory->fCreators[i] && !stricmp(className, theFactory->fCreators[i]->ClassName()) )
|
||||
{
|
||||
return theFactory->fCreators[i]->ClassIndex();
|
||||
}
|
||||
|
Reference in New Issue
Block a user