mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-24 01:59:15 +01:00
More type fix
This commit is contained in:
parent
1cc8a1d247
commit
74276ae878
@ -151,11 +151,11 @@ cAudioManager::PostInitialiseGameSpecificSetup()
|
|||||||
#endif // GTA_BRIDGE
|
#endif // GTA_BRIDGE
|
||||||
m_nEscalatorEntity = CreateEntity(AUDIOTYPE_ESCALATOR, (void*)1);
|
m_nEscalatorEntity = CreateEntity(AUDIOTYPE_ESCALATOR, (void*)1);
|
||||||
if (m_nEscalatorEntity >= 0)
|
if (m_nEscalatorEntity >= 0)
|
||||||
SetEntityStatus(m_nEscalatorEntity, 1);
|
SetEntityStatus(m_nEscalatorEntity, true);
|
||||||
|
|
||||||
m_nExtraSoundsEntity = CreateEntity(AUDIOTYPE_EXTRA_SOUNDS, (void*)1);
|
m_nExtraSoundsEntity = CreateEntity(AUDIOTYPE_EXTRA_SOUNDS, (void*)1);
|
||||||
if (m_nExtraSoundsEntity >= 0)
|
if (m_nExtraSoundsEntity >= 0)
|
||||||
SetEntityStatus(m_nExtraSoundsEntity, 1);
|
SetEntityStatus(m_nExtraSoundsEntity, true);
|
||||||
|
|
||||||
|
|
||||||
m_sMissionAudio.m_nSampleIndex[0] = NO_SAMPLE;
|
m_sMissionAudio.m_nSampleIndex[0] = NO_SAMPLE;
|
||||||
|
Loading…
Reference in New Issue
Block a user