summaryrefslogtreecommitdiff
path: root/gp2x/gp2x.c
diff options
context:
space:
mode:
authornotaz2011-09-08 00:45:41 +0300
committernotaz2011-09-08 00:48:33 +0300
commitd40aa461c5267826ec092f80b9e4db6cc38466b1 (patch)
tree25b24db057ae4bd3b4ecfff4ebbe72c2f30b18f9 /gp2x/gp2x.c
parent44cae4c585effb7c34c6636bc9802cd0bab58ac3 (diff)
downloadpicogpsp-d40aa461c5267826ec092f80b9e4db6cc38466b1.tar.gz
picogpsp-d40aa461c5267826ec092f80b9e4db6cc38466b1.tar.bz2
picogpsp-d40aa461c5267826ec092f80b9e4db6cc38466b1.zip
make romdir saving not GP2X specific
not using config as it's binary, this is intended to be user editable.
Diffstat (limited to 'gp2x/gp2x.c')
-rw-r--r--gp2x/gp2x.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/gp2x/gp2x.c b/gp2x/gp2x.c
index 7bef895..d03a548 100644
--- a/gp2x/gp2x.c
+++ b/gp2x/gp2x.c
@@ -244,28 +244,6 @@ u32 wiz_load_gamepak(char *name)
#endif
-static int get_romdir(char *buff, size_t size)
-{
- FILE *f;
- char *s;
- int r = -1;
-
- f = fopen("romdir.txt", "r");
- if (f == NULL)
- return -1;
-
- s = fgets(buff, size, f);
- if (s)
- {
- r = strlen(s);
- while (r > 0 && isspace(buff[r-1]))
- buff[--r] = 0;
- }
-
- fclose(f);
- return r;
-}
-
void gpsp_plat_init(void)
{
char buff[256];
@@ -281,9 +259,6 @@ void gpsp_plat_init(void)
fb_video_init();
#endif
- if (get_romdir(buff, sizeof(buff)) > 0)
- chdir(buff);
-
gp2x_sound_volume(1);
}
@@ -293,17 +268,6 @@ void gpsp_plat_quit(void)
getcwd(buff1, sizeof(buff1));
chdir(main_path);
- if (get_romdir(buff2, sizeof(buff2)) >= 0 &&
- strcmp(buff1, buff2) != 0)
- {
- FILE *f = fopen("romdir.txt", "w");
- if (f != NULL)
- {
- printf("writing romdir: %s\n", buff1);
- fprintf(f, "%s", buff1);
- fclose(f);
- }
- }
warm_finish();
#ifdef WIZ_BUILD