Dereference pSeat and pSeatLocal to __NULL__ instead, it's not like we ever

caught an error with the previous assignment anyway.
This commit is contained in:
Marco Cawthorne 2021-05-08 23:06:11 +02:00
parent 64745eb23c
commit e0a2f47f4d

View file

@ -419,8 +419,8 @@ CSQC_UpdateView(float w, float h, float focus)
if (autocvar_s_al_debug) if (autocvar_s_al_debug)
EFX_DebugInfo(); EFX_DebugInfo();
pSeat = (void*)0x70000000i; pSeat = __NULL__;
pSeatLocal = (void*)0x70000000i; pSeatLocal = __NULL__;
Vox_Update(); Vox_Update();
} }