mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-12 02:41:14 +00:00
15 lines
382 B
C++
15 lines
382 B
C++
#include "config.h"
|
|
|
|
#include <SDL3/SDL_log.h>
|
|
#include <iniparser.h>
|
|
|
|
// copy of 3ds config
|
|
|
|
void WIIU_SetupDefaultConfigOverrides(dictionary* p_dictionary)
|
|
{
|
|
SDL_Log("Overriding default config for Wii U");
|
|
|
|
iniparser_set(p_dictionary, "isle:diskpath", "sdmc:/wiiu/apps/isle-U/content/LEGO");
|
|
iniparser_set(p_dictionary, "isle:cdpath", "sdmc:/wiiu/apps/isle-U/content/LEGO");
|
|
}
|