mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
getting rid of strnicmp
This commit is contained in:
parent
bae3a3e72f
commit
12cc0e4132
@ -158,7 +158,7 @@ CSimpleModelInfo::SetupBigBuilding(void)
|
||||
m_lodDistances[2] = related->GetLargestLodDistance()/TheCamera.LODDistMultiplier;
|
||||
else
|
||||
#ifdef FIX_BUGS
|
||||
if(strnicmp(GetName(), "lod", 3) == 0)
|
||||
if(toupper(m_name[0]) == 'L' && toupper(m_name[1]) == 'O' && toupper(m_name[2]) == 'D')
|
||||
m_lodDistances[2] = 100.0f;
|
||||
else
|
||||
m_lodDistances[2] = 0.0f;
|
||||
|
Loading…
Reference in New Issue
Block a user