DS: WIP virtual keyboard support

This commit is contained in:
Cameron Cawley 2021-08-25 22:21:58 +01:00
parent 78f0c7a3c7
commit 224d626e65
8 changed files with 261 additions and 26 deletions

View file

@ -71,8 +71,6 @@ void timerTickHandler() {
}
void OSystem_DS::initBackend() {
initGraphics();
defaultExceptionHandler();
ConfMan.setInt("autosave_period", 0);
@ -88,6 +86,8 @@ void OSystem_DS::initBackend() {
_mixerManager = new MaxModMixerManager(11025, 32768);
_mixerManager->init();
initGraphics();
BaseBackend::initBackend();
}