summaryrefslogtreecommitdiff
path: root/src/control
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-12-25 08:59:32 +0200
committerSergeanur <s.anureev@yandex.ua>2020-12-25 09:03:13 +0200
commit6a2edcea4647e9a7f6e84c4270614ccf58794fcb (patch)
treef3bc8d6adfe517830eb5d7f9975628e29f8b389a /src/control
parent07680269380ab21d3553abd635ec94772413fad8 (diff)
Small type use fixes
# Conflicts: # src/audio/AudioLogic.cpp # src/control/Garages.cpp # src/vehicles/Cranes.cpp
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Garages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Garages.cpp b/src/control/Garages.cpp
index 61c1a8fc..ec2b4f68 100644
--- a/src/control/Garages.cpp
+++ b/src/control/Garages.cpp
@@ -152,7 +152,7 @@ void CGarages::Init(void)
}
hGarages = DMAudio.CreateEntity(AUDIOTYPE_GARAGE, (void*)1);
if (hGarages >= 0)
- DMAudio.SetEntityStatus(hGarages, 1);
+ DMAudio.SetEntityStatus(hGarages, true);
}
void CGarages::Shutdown(void)