Android: Get profile name from core

To avoid duplicating information between Kotlin and C++.
This commit is contained in:
JosJuice
2023-10-01 18:35:01 +02:00
parent b2e016f012
commit d6c0f8e749
19 changed files with 75 additions and 10 deletions

View File

@ -383,6 +383,11 @@ std::string HotkeyManager::GetName() const
return "Hotkeys";
}
InputConfig* HotkeyManager::GetConfig() const
{
return HotkeyManagerEmu::GetConfig();
}
void HotkeyManager::GetInput(HotkeyStatus* kb, bool ignore_focus)
{
const auto lock = GetStateLock();