touch: replace static arrays with linked list

This commit is contained in:
nillerusr
2021-10-13 18:18:36 +03:00
parent 63e458ef84
commit 977bac3205
6 changed files with 197 additions and 164 deletions

View File

@@ -1562,3 +1562,10 @@ ISteamController* CInputSystem::SteamControllerInterface()
return m_SteamAPIContext.SteamController();
}
}
void CInputSystem::StartTextInput()
{
#ifdef USE_SDL
SDL_StartTextInput();
#endif
}

View File

@@ -374,6 +374,8 @@ public:
m_bSkipControllerInitialization = bSkip;
}
void StartTextInput();
#if defined( USE_SDL )
void PollInputState_Platform();