Fix overlooked BOOL

master
Ansariel 2024-06-11 16:18:39 +02:00
parent 0e037b525a
commit fe0ffaee54
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ LLTerrainMaterials::Type LLTerrainMaterials::getMaterialType()
{
LL_PROFILE_ZONE_SCOPED;
const BOOL use_textures = texturesReady(false, false) || !materialsReady(false, false);
const bool use_textures = texturesReady(false, false) || !materialsReady(false, false);
return use_textures ? Type::TEXTURE : Type::PBR;
}