Fixed harmless initialization order mismatch

No more 'field ... will be initialized after field ...' warnings reported by GCC/Clang
This commit is contained in:
alexey.lysiuk 2017-01-05 15:50:10 +02:00 committed by Christoph Oelckers
commit 1a0d8dffd9
2 changed files with 2 additions and 2 deletions

View file

@ -136,10 +136,10 @@ DPSprite::DPSprite(player_t *owner, AActor *caller, int id)
: x(.0), y(.0),
oldx(.0), oldy(.0),
firstTic(true),
Sprite(0),
Flags(0),
Caller(caller),
Owner(owner),
Sprite(0),
ID(id),
processPending(true)
{