summaryrefslogtreecommitdiffstats
path: root/core/os/os.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-27 15:17:02 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-27 15:17:45 +0200
commit0a10f09ce4321695940a626eef9c64b36f599193 (patch)
tree7a75ca214e2282f9e57d6c708ccd5fdf4c488355 /core/os/os.cpp
parentec62b8a3ee1d731387a440b4d2abb7961aa28322 (diff)
downloadredot-engine-0a10f09ce4321695940a626eef9c64b36f599193.tar.gz
Web: Clarify that `OS.get_unique_id` is not supported
Remove the base error message in `OS`, we no longer really error out this way for not implemented methods. Instead, each platform should override them to provide the context they want. Fixes #82439.
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r--core/os/os.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp
index 38ea4a0fdd..991b179e1f 100644
--- a/core/os/os.cpp
+++ b/core/os/os.cpp
@@ -355,7 +355,7 @@ void OS::set_cmdline(const char *p_execpath, const List<String> &p_args, const L
}
String OS::get_unique_id() const {
- ERR_FAIL_V("");
+ return "";
}
int OS::get_processor_count() const {