mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
Fix XCode compiler errors
I'm faily certain this also fixes broken logic (g_game.c).
This commit is contained in:
parent
f070bd2d4d
commit
b15cea53e6
2 changed files with 2 additions and 2 deletions
|
@ -6032,7 +6032,7 @@ void G_ConfirmRewind(tic_t rewindtime)
|
|||
|
||||
G_DoPlayDemo(NULL); // Restart the current demo
|
||||
|
||||
for (j = 0; j < rewindtime && leveltime < rewindtime; i++)
|
||||
for (j = 0; j < rewindtime && leveltime < rewindtime; j++)
|
||||
{
|
||||
//TryRunTics(1);
|
||||
G_Ticker((j % NEWTICRATERATIO) == 0);
|
||||
|
|
|
@ -7913,7 +7913,7 @@ boolean P_SpectatorJoinGame(player_t *player)
|
|||
static void P_CalcPostImg(player_t *player)
|
||||
{
|
||||
sector_t *sector = player->mo->subsector->sector;
|
||||
postimg_t *type = postimg_none;
|
||||
postimg_t *type = NULL;
|
||||
INT32 *param;
|
||||
fixed_t pviewheight;
|
||||
UINT8 i;
|
||||
|
|
Loading…
Reference in a new issue