ReallySetRoadTexturingLevel matching

This commit is contained in:
Dethrace Labs 2026-01-25 12:12:50 +13:00
parent fce5afb781
commit b6a6480880
1 changed files with 1 additions and 1 deletions

View File

@ -2287,7 +2287,7 @@ void SetRoadTexturingLevel(tRoad_texturing_level pLevel) {
void ReallySetRoadTexturingLevel(tRoad_texturing_level pLevel) {
if (pLevel != gRoad_texturing_level) {
ProcessFaceMaterials(gProgram_state.track_spec.the_actor, (pLevel == eRTL_none) ? RoadUntexToPersp : RoadPerspToUntex);
ProcessFaceMaterials(gProgram_state.track_spec.the_actor, (pLevel != eRTL_none) ? RoadUntexToPersp : RoadPerspToUntex);
}
}