summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/loader.c')
-rw-r--r--apps/plugins/rockboy/loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/loader.c b/apps/plugins/rockboy/loader.c
index d48a06957e..71ab4e78d7 100644
--- a/apps/plugins/rockboy/loader.c
+++ b/apps/plugins/rockboy/loader.c
@@ -99,7 +99,7 @@ static const unsigned char ramsize_table[5] =
99 0, 1, 1, 4, 16 99 0, 1, 1, 4, 16
100}; 100};
101 101
102static char *romfile; 102static const char *romfile;
103static char sramfile[500]; 103static char sramfile[500];
104static char rtcfile[500]; 104static char rtcfile[500];
105static char saveprefix[500]; 105static char saveprefix[500];
@@ -284,7 +284,7 @@ void cleanup(void)
284 /* IDEA - if error, write emergency savestate..? */ 284 /* IDEA - if error, write emergency savestate..? */
285} 285}
286 286
287void loader_init(char *s) 287void loader_init(const char *s)
288{ 288{
289 romfile = s; 289 romfile = s;
290 if(rom_load()) 290 if(rom_load())