diff --git a/ISLE/wiiu/config.cpp b/ISLE/wiiu/config.cpp new file mode 100644 index 00000000..ec00d443 --- /dev/null +++ b/ISLE/wiiu/config.cpp @@ -0,0 +1,18 @@ +#include "config.h" + +#ifndef NO_SDL3 +#include +#endif + +#include + +void WIIU_SetupDefaultConfigOverrides(dictionary* p_dictionary) +{ +#ifndef NO_SDL3 + SDL_Log("Overriding default config for wiiu"); +#endif + + iniparser_set(p_dictionary, "isle:diskpath", "sdmc:/wiiu/apps/isle-u/content/ISLE/LEGO/disk"); + iniparser_set(p_dictionary, "isle:cdpath", "sdmc:/wiiu/apps/isle-u/content/ISLE/"); + iniparser_set(p_dictionary, "isle:savepath", "sdmc:/wiiu/apps/isle-u/content/ISLE/SAVE"); +} diff --git a/ISLE/wiiu/config.h b/ISLE/wiiu/config.h new file mode 100644 index 00000000..77be4303 --- /dev/null +++ b/ISLE/wiiu/config.h @@ -0,0 +1,8 @@ +#ifndef WIIU_CONFIG_H +#define WIIU_CONFIG_H + +#include "dictionary.h" + +void WIIU_SetupDefaultConfigOverrides(dictionary* p_dictionary); + +#endif // WIIU_CONFIG_H \ No newline at end of file