From: hgn Date: Sat, 4 Nov 2023 15:08:30 +0000 (+0000) Subject: fix remote players ghosting X-Git-Url: https://harrygodden.com/git/?a=commitdiff_plain;h=b5f1f019789e739c42293994cec59b1bf65e0a59;p=carveJwlIkooP6JGAAIwe30JlM.git fix remote players ghosting --- diff --git a/world_gate.c b/world_gate.c index bb62e34..4c76b07 100644 --- a/world_gate.c +++ b/world_gate.c @@ -181,6 +181,7 @@ static int render_gate( world_instance *world, world_instance *world_inside, } render_world( world_inside, &world_gates.cam, layer_depth ); + render_remote_players( world_inside, &world_gates.cam ); { glDisable( GL_STENCIL_TEST ); @@ -197,7 +198,6 @@ static int render_gate( world_instance *world, world_instance *world_inside, glDisable( GL_STENCIL_TEST ); } - render_remote_players( world_inside, &world_gates.cam ); return 1; }