diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-25 03:01:46 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-25 03:27:12 +0200 |
commit | 16bf7919396cff4952e191368fa0907897b81348 (patch) | |
tree | a7f6eed75194fc8c8da6ec6d9095f72b4a720568 /src | |
parent | yuzu/applets/software_keyboard: Resolve sign mismatch comparison (diff) | |
download | yuzu-16bf7919396cff4952e191368fa0907897b81348.tar yuzu-16bf7919396cff4952e191368fa0907897b81348.tar.gz yuzu-16bf7919396cff4952e191368fa0907897b81348.tar.bz2 yuzu-16bf7919396cff4952e191368fa0907897b81348.tar.lz yuzu-16bf7919396cff4952e191368fa0907897b81348.tar.xz yuzu-16bf7919396cff4952e191368fa0907897b81348.tar.zst yuzu-16bf7919396cff4952e191368fa0907897b81348.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/applets/software_keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/software_keyboard.cpp b/src/yuzu/applets/software_keyboard.cpp index 7c95d730b..5223ec977 100644 --- a/src/yuzu/applets/software_keyboard.cpp +++ b/src/yuzu/applets/software_keyboard.cpp @@ -149,7 +149,7 @@ void QtSoftwareKeyboard::SendTextCheckDialog(std::u16string error_message, void QtSoftwareKeyboard::MainWindowFinishedText(std::optional<std::u16string> text) { // Acquire the HLE mutex std::lock_guard lock{HLE::g_hle_lock}; - text_output(text); + text_output(std::move(text)); } void QtSoftwareKeyboard::MainWindowFinishedCheckDialog() { |