Browse Source
Merge pull request #4527 from lioncash/pessimizing2
software_keyboard: Resolve a pessimizing move warning
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
src/core/hle/service/am/applets/software_keyboard.cpp
|
|
|
@ -122,8 +122,7 @@ void SoftwareKeyboard::ExecuteInteractive() { |
|
|
|
|
|
|
|
switch (request) { |
|
|
|
case Request::Calc: { |
|
|
|
broker.PushNormalDataFromApplet( |
|
|
|
std::make_shared<IStorage>(std::move(std::vector<u8>{1}))); |
|
|
|
broker.PushNormalDataFromApplet(std::make_shared<IStorage>(std::vector<u8>{1})); |
|
|
|
broker.SignalStateChanged(); |
|
|
|
break; |
|
|
|
} |
|
|
|
|