mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-05-30 08:31:29 +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)
|
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 ();
|
UpdateInterpolation ();
|
||||||
interpolator.AddInterpolation(this);
|
interpolator.AddInterpolation(this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue