@@ -180,7 +180,7 @@ SVS* CResourceManager::_CreateVS(LPCSTR _name)
180180 SVS* _vs = new SVS ();
181181 _vs->dwFlags |= xr_resource_flagged::RF_REGISTERED;
182182 m_vs.insert (std::make_pair (_vs->set_name (name), _vs));
183- if (0 == stricmp (_name, " null" ))
183+ if (0 == _stricmp (_name, " null" ))
184184 {
185185 _vs->vs = NULL ;
186186 return _vs;
@@ -266,7 +266,7 @@ SPS* CResourceManager::_CreatePS(LPCSTR name)
266266 SPS* _ps = new SPS ();
267267 _ps->dwFlags |= xr_resource_flagged::RF_REGISTERED;
268268 m_ps.insert (std::make_pair (_ps->set_name (name), _ps));
269- if (0 == stricmp (name, " null" ))
269+ if (0 == _stricmp (name, " null" ))
270270 {
271271 _ps->ps = NULL ;
272272 return _ps;
@@ -558,7 +558,7 @@ void CResourceManager::DBG_VerifyTextures()
558558CMatrix* CResourceManager::_CreateMatrix (LPCSTR Name)
559559{
560560 R_ASSERT (Name && Name[0 ]);
561- if (0 == stricmp (Name, " $null" ))
561+ if (0 == _stricmp (Name, " $null" ))
562562 return NULL ;
563563
564564 LPSTR N = LPSTR (Name);
@@ -596,7 +596,7 @@ void CResourceManager::ED_UpdateMatrix(LPCSTR Name, CMatrix* data)
596596CConstant* CResourceManager::_CreateConstant (LPCSTR Name)
597597{
598598 R_ASSERT (Name && Name[0 ]);
599- if (0 == stricmp (Name, " $null" ))
599+ if (0 == _stricmp (Name, " $null" ))
600600 return NULL ;
601601
602602 LPSTR N = LPSTR (Name);
@@ -784,7 +784,7 @@ SVS* CResourceManager::_CreateVS(LPCSTR _name)
784784 SVS* _vs = new SVS ();
785785 _vs->dwFlags |= xr_resource_flagged::RF_REGISTERED;
786786 m_vs.insert (mk_pair (_vs->set_name (name), _vs));
787- if (0 == stricmp (_name, " null" ))
787+ if (0 == _stricmp (_name, " null" ))
788788 {
789789 _vs->vs = NULL ;
790790 return _vs;
@@ -906,7 +906,7 @@ SPS* CResourceManager::_CreatePS(LPCSTR name)
906906 SPS* _ps = new SPS ();
907907 _ps->dwFlags |= xr_resource_flagged::RF_REGISTERED;
908908 m_ps.insert (mk_pair (_ps->set_name (name), _ps));
909- if (0 == stricmp (name, " null" ))
909+ if (0 == _stricmp (name, " null" ))
910910 {
911911 _ps->ps = NULL ;
912912 return _ps;
0 commit comments