mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- oops. Missed change of hudDraw()
zDelta
from int to double while implementing ae2d2c7948
.
This commit is contained in:
parent
348acf95e0
commit
48e4bccc6d
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue