mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 11:50:49 +00:00
- fixed bad argument count in ScreenJobRunner.Validate call.
This commit is contained in:
parent
24dbfc7827
commit
b0cc5c14e2
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ bool ScreenJobValidate()
|
||||||
int res;
|
int res;
|
||||||
VMValue parm[] = { runner };
|
VMValue parm[] = { runner };
|
||||||
VMReturn ret(&res);
|
VMReturn ret(&res);
|
||||||
VMCall(func, parm, 2, &ret, 1);
|
VMCall(func, parm, 1, &ret, 1);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue