mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- Fixed: Initialization ordering warning in DPSpriteInterpolation.
This commit is contained in:
parent
afa438419d
commit
f02b52ef28
1 changed files with 2 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue