mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 14:32:08 +00:00
- removed useless initializations in binds printing ACS code
variables are initialized by FKeyBindings::GetKeysForCommand() anyway
This commit is contained in:
parent
e24ff0ac9c
commit
de0361842f
1 changed files with 1 additions and 1 deletions
|
@ -8601,7 +8601,7 @@ scriptwait:
|
|||
lookup = Level->Behaviors.LookupString (STACK(1));
|
||||
if (lookup != NULL)
|
||||
{
|
||||
int key1 = 0, key2 = 0;
|
||||
int key1, key2;
|
||||
|
||||
Bindings.GetKeysForCommand ((char *)lookup, &key1, &key2);
|
||||
|
||||
|
|
Loading…
Reference in a new issue