Scale should be fixed_t not UINT16!

This is probably a leftover from how scaling worked in v2.0 I take it
This commit is contained in:
Monster Iestyn 2017-06-17 17:22:45 +01:00
parent 1119ffab0f
commit ba6d011d7b
2 changed files with 2 additions and 2 deletions

View File

@ -3872,7 +3872,7 @@ void G_GhostAddColor(ghostcolor_t color)
ghostext.color = (UINT8)color;
}
void G_GhostAddScale(UINT16 scale)
void G_GhostAddScale(fixed_t scale)
{
if (!demorecording || !(demoflags & DF_GHOST))
return;

View File

@ -139,7 +139,7 @@ void G_GhostAddSpin(void);
void G_GhostAddRev(void);
void G_GhostAddColor(ghostcolor_t color);
void G_GhostAddFlip(void);
void G_GhostAddScale(UINT16 scale);
void G_GhostAddScale(fixed_t scale);
void G_GhostAddHit(mobj_t *victim);
void G_WriteGhostTic(mobj_t *ghost);
void G_ConsGhostTic(void);