mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-31 06:57:28 +05:00
Fixed check (should be case insensitive like in stock game)
This commit is contained in:
parent
cab60502f3
commit
a545d5f28f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ static RwFrame* GetFrameFromName( RwFrame* topFrame, const char* name )
|
||||||
|
|
||||||
RwFrame* operator() ( RwFrame* frame )
|
RwFrame* operator() ( RwFrame* frame )
|
||||||
{
|
{
|
||||||
if ( strcmp( m_name, GetFrameNodeName(frame) ) == 0 )
|
if ( _stricmp( m_name, GetFrameNodeName(frame) ) == 0 )
|
||||||
{
|
{
|
||||||
foundFrame = frame;
|
foundFrame = frame;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
Loading…
Reference in a new issue