ANDROID: Create and Register default path for icons

This commit is contained in:
Antoniou Athanasios 2023-02-26 19:59:56 +02:00 committed by antoniou79
parent d6c0aeafcb
commit afb267c83d
3 changed files with 30 additions and 0 deletions

View file

@ -456,6 +456,11 @@ void OSystem_Android::initBackend() {
// TODO remove the debug message eventually
LOGD("Setting DefaultSaveFileManager path to: %s", ConfMan.get("savepath").c_str());
ConfMan.registerDefault("iconspath", ConfMan.get("path") + "/icons");
// TODO remove the debug message eventually
LOGD("Setting Default Icons and Shaders path to: %s", ConfMan.get("iconspath").c_str());
_timerManager = new DefaultTimerManager();
_event_queue_lock = new Common::Mutex();