mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix XCode compiler errors
I'm faily certain this also fixes broken logic (g_game.c).
This commit is contained in:
parent
88ba895d18
commit
2b79547512
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
|
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);
|
//TryRunTics(1);
|
||||||
G_Ticker((j % NEWTICRATERATIO) == 0);
|
G_Ticker((j % NEWTICRATERATIO) == 0);
|
||||||
|
|
|
||||||
|
|
@ -7913,7 +7913,7 @@ boolean P_SpectatorJoinGame(player_t *player)
|
||||||
static void P_CalcPostImg(player_t *player)
|
static void P_CalcPostImg(player_t *player)
|
||||||
{
|
{
|
||||||
sector_t *sector = player->mo->subsector->sector;
|
sector_t *sector = player->mo->subsector->sector;
|
||||||
postimg_t *type = postimg_none;
|
postimg_t *type = NULL;
|
||||||
INT32 *param;
|
INT32 *param;
|
||||||
fixed_t pviewheight;
|
fixed_t pviewheight;
|
||||||
UINT8 i;
|
UINT8 i;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue