mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix dumb copy and paste error.
This commit is contained in:
parent
0c249f0084
commit
4beef2b877
1 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "base/NativeApp.h"
|
||||
#include "KeyMap.h"
|
||||
#include "../Core/HLE/sceUtility.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
||||
|
@ -223,7 +224,7 @@ void UpdateConfirmCancelKeys() {
|
|||
}
|
||||
|
||||
// Push several hard-coded keys before submitting to native.
|
||||
if(std::find(cancelKeys.begin(), cancelKeys.end(), NKCODE_ENTER) == cancelKeys.end())
|
||||
if(std::find(confirmKeys.begin(), confirmKeys.end(), NKCODE_ENTER) == confirmKeys.end())
|
||||
confirmKeys.push_back(NKCODE_ENTER);
|
||||
|
||||
const keycode_t hardcodedCancelKeys[] = {
|
||||
|
|
Loading…
Add table
Reference in a new issue