isle-portable/ISLE/switch/config.cpp
SnepOMatic (Rhew) 6b0c5b51e6 Remove SDL fixups and use an SDL3 port with fixes.
Fixes crash bug and world issues!
2025-11-15 19:42:30 +00:00

13 lines
417 B
C++

#include "config.h"
#include <SDL3/SDL_log.h>
#include <iniparser.h>
void NX_SetupDefaultConfigOverrides(dictionary* p_dictionary)
{
iniparser_set(p_dictionary, "isle:diskpath", "sdmc:/switch/isle/LEGO/");
iniparser_set(p_dictionary, "isle:cdpath", "sdmc:/switch/isle/");
iniparser_set(p_dictionary, "isle:savepath", "sdmc:/switch/isle/");
iniparser_set(p_dictionary, "isle:Cursor Sensitivity", "16.000000");
}