diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-01-12 09:24:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 09:24:47 +0100 |
commit | 0e4e782ada0bdd4ef19415f82a6373e2d79f7ecc (patch) | |
tree | fb8297949960789c8d9308f27d08db44f11f728d /drivers/unix/os_unix.h | |
parent | dd1b3ff0890b8dfc73977cfc874a9c741e13c388 (diff) | |
parent | 86b8176864f1d9450855264bf7783467fd7b71d7 (diff) | |
download | redot-engine-0e4e782ada0bdd4ef19415f82a6373e2d79f7ecc.tar.gz |
Merge pull request #70714 from Calinou/doc-os-stdin
Improve documentation for `OS.read_string_from_stdin()`
Diffstat (limited to 'drivers/unix/os_unix.h')
-rw-r--r-- | drivers/unix/os_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index 56c4d1747f..416311307c 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -51,7 +51,7 @@ public: virtual Vector<String> get_video_adapter_driver_info() const override; - virtual String get_stdin_string(bool p_block) override; + virtual String get_stdin_string() override; virtual Error get_entropy(uint8_t *r_buffer, int p_bytes) override; |