diff options
Diffstat (limited to 'src/chat.h')
-rw-r--r-- | src/chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chat.h b/src/chat.h index e39d97ec2..82ce80875 100644 --- a/src/chat.h +++ b/src/chat.h @@ -142,8 +142,9 @@ public: ChatPrompt(std::wstring prompt, u32 history_limit); ~ChatPrompt(); - // Input character + // Input character or string void input(wchar_t ch); + void input(const std::wstring &str); // Submit, clear and return current line std::wstring submit(); |