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:
@ -514,7 +514,7 @@ plSynchedObject::SDLStateList::const_iterator plSynchedObject::IFindInSDLStateLi
|
||||
|
||||
SDLStateList::const_iterator it = list.begin();
|
||||
for(; it != list.end(); it++)
|
||||
if (!_stricmp((*it).c_str(), sdlName))
|
||||
if (!stricmp((*it).c_str(), sdlName))
|
||||
return it;
|
||||
|
||||
return it; // .end(), false
|
||||
|
Reference in New Issue
Block a user