From e0a2f47f4da5a4aba507f7e9d188b5eb21587aaa Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sat, 8 May 2021 23:06:11 +0200 Subject: [PATCH] Dereference pSeat and pSeatLocal to __NULL__ instead, it's not like we ever caught an error with the previous assignment anyway. --- src/client/entry.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/entry.qc b/src/client/entry.qc index d727d304..cdeec048 100644 --- a/src/client/entry.qc +++ b/src/client/entry.qc @@ -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(); }