- oops. Missed change of hudDraw() zDelta from int to double while implementing ae2d2c7948.

This commit is contained in:
Mitchell Richters 2020-08-03 10:22:03 +10:00
parent 348acf95e0
commit 48e4bccc6d
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ static void viewBurnTime(int gScale)
}
void hudDraw(PLAYER *gView, int nSectnum, int defaultHoriz, double bobx, double boby, int zDelta, int basepal)
void hudDraw(PLAYER *gView, int nSectnum, int defaultHoriz, double bobx, double boby, double zDelta, int basepal)
{
if (gViewPos == 0)
{

View file

@ -147,7 +147,7 @@ extern int gViewX0S, gViewY0S, gViewX1S, gViewY1S;
extern int gLastPal;
extern double gInterpolate;
void hudDraw(PLAYER* gView, int nSectnum, int defaultHoriz, double bobx, double boby, int zDelta, int basepal);
void hudDraw(PLAYER* gView, int nSectnum, int defaultHoriz, double bobx, double boby, double zDelta, int basepal);
void viewToggle(int viewMode);
void viewInitializePrediction(void);
void viewUpdatePrediction(GINPUT *pInput);