CommonHostInterface: Add controller nav helpers

This commit is contained in:
Connor McLaughlin
2021-01-30 21:25:49 +10:00
parent 61d0af30a2
commit 3a7d9f1725
3 changed files with 52 additions and 1 deletions

View File

@ -2866,6 +2866,12 @@ std::unique_ptr<ByteStream> CommonHostInterface::OpenPackageFile(const char* pat
return FileSystem::OpenFile(full_path.c_str(), real_flags);
}
bool CommonHostInterface::SetControllerNavigationButtonState(FrontendCommon::ControllerNavigationButton button,
bool pressed)
{
return false;
}
#ifdef WITH_DISCORD_PRESENCE
void CommonHostInterface::SetDiscordPresenceEnabled(bool enabled)