diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-12-02 08:56:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 08:56:53 +0100 |
commit | fb932d0f504c1c0c74202424030904ba20a99854 (patch) | |
tree | aaa009ec3e0d36c4858194956a297450f43fa057 /drivers/unix/os_unix.cpp | |
parent | d311a39c19839da57b3e079735308b337291244a (diff) | |
parent | 3e1b437315778a99db669c28277352d7a4e86f36 (diff) | |
download | redot-engine-fb932d0f504c1c0c74202424030904ba20a99854.tar.gz |
Merge pull request #7217 from eska014/js-os
Work on asm.js and WebAssembly platforms
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r-- | drivers/unix/os_unix.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 271cf302ef..94f5f5b46f 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -522,9 +522,6 @@ String OS_Unix::get_executable_path() const { delete[] resolved_path; return path; -#elif defined(EMSCRIPTEN) - // We return nothing - return String(); #else ERR_PRINT("Warning, don't know how to obtain executable path on this OS! Please override this function properly."); return OS::get_executable_path(); |