diff options
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, | |||
| 149 | void QtSoftwareKeyboard::MainWindowFinishedText(std::optional<std::u16string> text) { | 149 | void QtSoftwareKeyboard::MainWindowFinishedText(std::optional<std::u16string> text) { |
| 150 | // Acquire the HLE mutex | 150 | // Acquire the HLE mutex |
| 151 | std::lock_guard lock{HLE::g_hle_lock}; | 151 | std::lock_guard lock{HLE::g_hle_lock}; |
| 152 | text_output(text); | 152 | text_output(std::move(text)); |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | void QtSoftwareKeyboard::MainWindowFinishedCheckDialog() { | 155 | void QtSoftwareKeyboard::MainWindowFinishedCheckDialog() { |