aboutsummaryrefslogtreecommitdiff
path: root/src/ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ini.c')
-rw-r--r--src/ini.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ini.c b/src/ini.c
index d2d3f57..47118a2 100644
--- a/src/ini.c
+++ b/src/ini.c
@@ -30,6 +30,9 @@ void iniInit()
strcat(fullPath, "sdmc:/3ds/appdata/HydraCastleLabyrinth/");
#endif
strcat(fullPath, "system.ini");
+ #ifdef DREAMCAST
+ strcat(fullPath, "/ram/system.ini");
+ #endif
}
FILE* f;
@@ -61,6 +64,9 @@ void saveSettings()
strcat(fullPath, "sdmc:/3ds/appdata/HydraCastleLabyrinth/");
#endif
strcat(fullPath, "system.ini");
+ #ifdef DREAMCAST
+ strcat(fullPath, "/ram/system.ini");
+ #endif
}
FILE* f;
@@ -146,6 +152,9 @@ void loadSettings()
strcat(fullPath, "sdmc:/3ds/appdata/HydraCastleLabyrinth/");
#endif
strcat(fullPath, "system.ini");
+ #ifdef DREAMCAST
+ strcat(fullPath, "/ram/system.ini");
+ #endif
}
FILE* f;