mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-12 19:19:43 +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.
|
// Workaround if cellKb did not init the keyboard handler.
|
||||||
handler.Init(1);
|
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
Add a link
Reference in a new issue