Skip to content

Commit 84d193a

Browse files
committed
Fix failing debug assertion introduced in 4159728
1 parent 63c2de3 commit 84d193a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Client/multiplayer_sa/CMultiplayerSA.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,11 +1463,11 @@ void CMultiplayerSA::InitHooks()
14631463

14641464
// Disable vehicle audio driver logic so MTA can reimplement it (#9681)
14651465
// Disable updating m_bPlayerDriver in CAEVehicleAudioEntity::Service
1466-
MemSet ( (void*) 0x5023B2, 0x90, 6 );
1466+
MemSetFast ( (void*) 0x5023B2, 0x90, 6 );
14671467
// Disable call to CAEVehicleAudioEntity::JustGotInVehicleAsDriver
1468-
MemSet ( (void*) 0x5023E1, 0x90, 5 );
1468+
MemSetFast( (void*) 0x5023E1, 0x90, 5 );
14691469
// Disable call to CAEVehicleAudioEntity::JustGotOutOfVehicleAsDriver
1470-
MemSet ( (void*) 0x502341, 0x90, 5 );
1470+
MemSetFast( (void*) 0x502341, 0x90, 5 );
14711471

14721472

14731473
InitHooks_CrashFixHacks ();

0 commit comments

Comments
 (0)