mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 12:30:40 +00:00
- Blood: make sure that tracking condition data is always properly initialized.
This commit is contained in:
parent
acac74715f
commit
3b8956c728
1 changed files with 3 additions and 3 deletions
|
@ -239,12 +239,12 @@ struct TRPLAYERCTRL { // this one for controlling the player using triggers (mov
|
||||||
};
|
};
|
||||||
|
|
||||||
struct OBJECTS_TO_TRACK {
|
struct OBJECTS_TO_TRACK {
|
||||||
uint8_t cmd;
|
uint8_t cmd = 0;
|
||||||
EventObject obj;
|
EventObject obj = EventObject(nullptr);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct TRCONDITION {
|
struct TRCONDITION {
|
||||||
DBloodActor* actor;
|
DBloodActor* actor = nullptr;
|
||||||
TArray<OBJECTS_TO_TRACK> objects;
|
TArray<OBJECTS_TO_TRACK> objects;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue