getting rid of strnicmp

This commit is contained in:
aap 2020-05-31 22:35:29 +02:00
parent bae3a3e72f
commit 12cc0e4132
1 changed files with 1 additions and 1 deletions

View File

@ -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;