summaryrefslogtreecommitdiffstats
path: root/platform/uwp/os_uwp.cpp
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-12-29 21:06:11 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2023-01-11 19:57:25 +0100
commit86b8176864f1d9450855264bf7783467fd7b71d7 (patch)
tree51024e2dbb4e65125e300048af359eca89e8fd95 /platform/uwp/os_uwp.cpp
parenta75493091823020d858fabadbfa5994da0d658cb (diff)
downloadredot-engine-86b8176864f1d9450855264bf7783467fd7b71d7.tar.gz
Improve documentation for `OS.read_string_from_stdin()`
This makes it clearer that calls to this method are blocking. The unused method parameter was also removed.
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r--platform/uwp/os_uwp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp
index 141c28c713..e25a43cf77 100644
--- a/platform/uwp/os_uwp.cpp
+++ b/platform/uwp/os_uwp.cpp
@@ -680,7 +680,7 @@ bool OS_UWP::set_environment(const String &p_var, const String &p_value) const {
return false;
}
-String OS_UWP::get_stdin_string(bool p_block) {
+String OS_UWP::get_stdin_string() {
return String();
}