2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix StupidSearch

This fixes stupid stuff like Phil's Relto linking panel and the Words covers
This commit is contained in:
2012-02-19 18:43:52 -05:00
parent 827d58bb46
commit ec216206dd

View File

@ -109,7 +109,7 @@ hsBool NameMatches(const char* obName, const char* pKName, hsBool subString)
} }
else else
{ {
if (plString(_TEMP_CONVERT_FROM_LITERAL(p)).Find(p, plString::kCaseInsensitive) >= 0) if (_TEMP_CONVERT_FROM_LITERAL(p).Find(o, plString::kCaseInsensitive) >= 0)
return true; return true;
} }