mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 13:41:05 +00:00
- fixed: The statusbar's MustDrawLog method was called with an incorrect number of parameters.
This commit is contained in:
parent
797cb94b4f
commit
1df7dc81e6
1 changed files with 1 additions and 1 deletions
|
@ -1079,7 +1079,7 @@ bool DBaseStatusBar::MustDrawLog(EHudState state)
|
|||
{
|
||||
IFVIRTUAL(DBaseStatusBar, MustDrawLog)
|
||||
{
|
||||
VMValue params[] = { (DObject*)this };
|
||||
VMValue params[] = { (DObject*)this, int(state) };
|
||||
int rv;
|
||||
VMReturn ret(&rv);
|
||||
VMCall(func, params, countof(params), &ret, 1);
|
||||
|
|
Loading…
Reference in a new issue