mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 21:31:32 +00:00
Fix dereferencing uninitialized pointer
This commit is contained in:
parent
35a8944f88
commit
92d320be72
1 changed files with 1 additions and 1 deletions
|
@ -4667,7 +4667,7 @@ void HWR_RenderFrame(INT32 viewnumber, player_t *player, boolean skybox)
|
|||
{
|
||||
angle_t a1;
|
||||
const float fpov = FIXED_TO_FLOAT(cv_fov.value+player->fovadd);
|
||||
postimg_t *postprocessor;
|
||||
postimg_t *postprocessor = &postimgtype[0];
|
||||
INT32 i;
|
||||
|
||||
// set window position
|
||||
|
|
Loading…
Reference in a new issue