- Fixed: Initialization ordering warning in DPSpriteInterpolation.

This commit is contained in:
Braden Obrzut 2015-09-13 20:56:20 -04:00
parent afa438419d
commit f02b52ef28

View file

@ -866,11 +866,9 @@ void DPolyobjInterpolation::Serialize(FArchive &arc)
//==========================================================================
DPSpriteInterpolation::DPSpriteInterpolation(pspdef_t *_psp, int _player, int _position)
: nfsx(0), nfsy(0), ofsx(0), ofsy(0)
: psp(_psp), player(_player), position(_position),
ofsx(0), ofsy(0), nfsx(0), nfsy(0)
{
psp = _psp;
player = _player;
position = _position;
UpdateInterpolation ();
interpolator.AddInterpolation(this);
}