diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-01-06 11:34:10 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-01-06 14:35:22 +0200 |
commit | c69e0d16bc8adbe3d984f4f9953412986ed02791 (patch) | |
tree | c164078533bebe91a544618bf61c0a1045de886a /core/os | |
parent | 1f0dc026491539ed07f144e0aad29cdfeaa5f66d (diff) |
Fix multiple missing UTF-8 decoding.
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 506e968bf6..0032e8e4bc 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -346,7 +346,7 @@ String OS::get_model_name() const { } void OS::set_cmdline(const char *p_execpath, const List<String> &p_args) { - _execpath = p_execpath; + _execpath = String::utf8(p_execpath); _cmdline = p_args; } |