mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
Fixed uninitialized members in DPSprite class
https://forum.zdoom.org/viewtopic.php?t=60034
This commit is contained in:
parent
84e9017a5f
commit
408a2f6dab
1 changed files with 3 additions and 0 deletions
|
@ -153,10 +153,13 @@ DPSprite::DPSprite(player_t *owner, AActor *caller, int id)
|
|||
: x(.0), y(.0),
|
||||
oldx(.0), oldy(.0),
|
||||
firstTic(true),
|
||||
Tics(0),
|
||||
Flags(0),
|
||||
Caller(caller),
|
||||
Owner(owner),
|
||||
State(nullptr),
|
||||
Sprite(0),
|
||||
Frame(0),
|
||||
ID(id),
|
||||
processPending(true)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue