mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Only do view interpolation hack if renderer exists
This commit is contained in:
parent
fcdb098b9c
commit
461a80d357
1 changed files with 10 additions and 6 deletions
16
src/p_tick.c
16
src/p_tick.c
|
@ -25,6 +25,7 @@
|
|||
#include "k_kart.h"
|
||||
#include "r_main.h"
|
||||
#include "r_fps.h"
|
||||
#include "i_video.h" // rendermode
|
||||
|
||||
// Object place
|
||||
#include "m_cheat.h"
|
||||
|
@ -816,15 +817,18 @@ void P_Ticker(boolean run)
|
|||
// Hack: ensure newview is assigned every tic.
|
||||
// Ensures view interpolation is T-1 to T in poor network conditions
|
||||
// We need a better way to assign view state decoupled from game logic
|
||||
for (i = 0; i <= splitscreen; i++)
|
||||
if (rendermode != render_none)
|
||||
{
|
||||
player_t *player = &players[displayplayers[i]];
|
||||
boolean isSkyVisibleForPlayer = skyVisiblePerPlayer[i];
|
||||
if (isSkyVisibleForPlayer && player->mo && skyboxmo[0] && cv_skybox.value)
|
||||
for (i = 0; i <= splitscreen; i++)
|
||||
{
|
||||
R_SkyboxFrame(player);
|
||||
player_t *player = &players[displayplayers[i]];
|
||||
boolean isSkyVisibleForPlayer = skyVisiblePerPlayer[i];
|
||||
if (isSkyVisibleForPlayer && player->mo && skyboxmo[0] && cv_skybox.value)
|
||||
{
|
||||
R_SkyboxFrame(player);
|
||||
}
|
||||
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
|
||||
}
|
||||
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue