mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 16:33:30 +00:00
Fix OS_Javascript execute method
Signature was changed in OS via:
cd4449e7ab
This commit is contained in:
parent
996abb83e3
commit
6622091eaf
2 changed files with 2 additions and 2 deletions
|
@ -1035,7 +1035,7 @@ void OS_JavaScript::finalize() {
|
|||
|
||||
// Miscellaneous
|
||||
|
||||
Error OS_JavaScript::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr) {
|
||||
Error OS_JavaScript::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr, Mutex *p_pipe_mutex) {
|
||||
|
||||
ERR_EXPLAIN("OS::execute() is not available on the HTML5 platform");
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue