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
1 changed files with 2 additions and 2 deletions

View File

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