mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-05-31 09:21:36 +00:00
- fixed: A_SetInventory still had default initializers.
This commit is contained in:
parent
85ff172ee3
commit
ba62a86c80
2 changed files with 3 additions and 3 deletions
|
@ -2464,8 +2464,8 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_SetInventory)
|
|||
PARAM_SELF_PROLOGUE(AActor);
|
||||
PARAM_CLASS(itemtype, AInventory);
|
||||
PARAM_INT(amount);
|
||||
PARAM_INT_DEF(ptr) { ptr = AAPTR_DEFAULT; }
|
||||
PARAM_BOOL_DEF(beyondMax) { beyondMax = false; }
|
||||
PARAM_INT_DEF(ptr);
|
||||
PARAM_BOOL_DEF(beyondMax);
|
||||
|
||||
bool res = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue