mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
overlays: enable key repeat by default
This commit is contained in:
parent
ff7636ea01
commit
8d662e9327
1 changed files with 5 additions and 0 deletions
|
@ -155,6 +155,11 @@ namespace rsx
|
|||
{
|
||||
// Workaround if cellKb did not init the keyboard handler.
|
||||
handler.Init(1);
|
||||
|
||||
// Enable key repeat
|
||||
std::vector<Keyboard>& keyboards = handler.GetKeyboards();
|
||||
ensure(!keyboards.empty());
|
||||
keyboards.at(0).m_key_repeat = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue