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.
This commit is contained in:
@ -149,13 +149,9 @@ Vector<String> OS_Unix::get_video_adapter_driver_info() const {
|
||||
return Vector<String>();
|
||||
}
|
||||
|
||||
String OS_Unix::get_stdin_string(bool p_block) {
|
||||
if (p_block) {
|
||||
char buff[1024];
|
||||
return String::utf8(fgets(buff, 1024, stdin));
|
||||
}
|
||||
|
||||
return String();
|
||||
String OS_Unix::get_stdin_string() {
|
||||
char buff[1024];
|
||||
return String::utf8(fgets(buff, 1024, stdin));
|
||||
}
|
||||
|
||||
Error OS_Unix::get_entropy(uint8_t *r_buffer, int p_bytes) {
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user