mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-09 01:01:05 +00:00
- fix menu commands with semicolon separated commands
C_DoCommand only executes one command, to do full processing AddCommandString is needed.
This commit is contained in:
parent
ee2c775bd8
commit
4422f9079c
1 changed files with 1 additions and 1 deletions
|
@ -998,7 +998,7 @@ DEFINE_ACTION_FUNCTION(DOptionMenuItemCommand, DoCommand)
|
||||||
}
|
}
|
||||||
|
|
||||||
UnsafeExecutionScope scope(unsafe);
|
UnsafeExecutionScope scope(unsafe);
|
||||||
C_DoCommand(cmd);
|
AddCommandString(cmd);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue