aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotaz2011-01-27 00:35:04 +0200
committernotaz2011-01-27 01:07:45 +0200
commit6fe1f05632f22ddba1d19814e2b14454e8e51940 (patch)
treefac4932bd08972288a5722a0752f253f068afb52
parent799a9f26a31d64830fcb887fceea2f987136dd00 (diff)
downloadpcsx_rearmed-6fe1f05632f22ddba1d19814e2b14454e8e51940.tar.gz
pcsx_rearmed-6fe1f05632f22ddba1d19814e2b14454e8e51940.tar.bz2
pcsx_rearmed-6fe1f05632f22ddba1d19814e2b14454e8e51940.zip
frontend: remove bad configs
-rw-r--r--frontend/main.c46
1 files changed, 24 insertions, 22 deletions
diff --git a/frontend/main.c b/frontend/main.c
index cb37bd7..37c9ba3 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -81,6 +81,24 @@ void set_cd_image(const char *fname)
}
}
+static void set_default_paths(void)
+{
+ MAKE_PATH(Config.Mcd1, MEMCARD_DIR, "card1.mcd");
+ MAKE_PATH(Config.Mcd2, MEMCARD_DIR, "card2.mcd");
+ strcpy(Config.BiosDir, "bios");
+
+ strcpy(Config.PluginsDir, "plugins");
+ strcpy(Config.Gpu, "builtin_gpu");
+ strcpy(Config.Spu, "builtin_spu");
+ strcpy(Config.Cdr, "builtin_cdr");
+ strcpy(Config.Pad1, "builtin_pad");
+ strcpy(Config.Pad2, "builtin_pad");
+ strcpy(Config.Net, "Disabled");
+ Config.PsxAuto = 1;
+
+ snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "." PATCHES_DIR);
+}
+
int main(int argc, char *argv[])
{
char file[MAXPATHLEN] = "";
@@ -164,31 +182,10 @@ int main(int argc, char *argv[])
}
memset(&Config, 0, sizeof(PcsxConfig));
- strcpy(Config.Net, "Disabled");
CheckSubDir();
-
- MAKE_PATH(Config.Mcd1, MEMCARD_DIR, "card1.mcd");
- MAKE_PATH(Config.Mcd2, MEMCARD_DIR, "card2.mcd");
+ set_default_paths();
strcpy(Config.Bios, "HLE");
- strcpy(Config.BiosDir, "bios");
-
- strcpy(Config.PluginsDir, "plugins");
- strcpy(Config.Gpu, "builtin_gpu");
- strcpy(Config.Spu, "builtin_spu");
- strcpy(Config.Cdr, "builtin_cdr");
- strcpy(Config.Pad1, "builtin_pad");
- strcpy(Config.Pad2, "builtin_pad");
- Config.PsxAuto = 1;
-
- snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "." PATCHES_DIR);
-/*
- // switch to plugin dotdir
- // this lets plugins work without modification!
- gchar *plugin_default_dir = g_build_filename(getenv("HOME"), PLUGINS_DIR, NULL);
- chdir(plugin_default_dir);
- g_free(plugin_default_dir);
-*/
if (cdfile)
set_cd_image(cdfile);
@@ -203,6 +200,11 @@ int main(int argc, char *argv[])
menu_init();
if (LoadPlugins() == -1) {
+ // FIXME: this recovery doesn't work, just delete bad config and bail out
+ // SysMessage("could not load plugins, retrying with defaults\n");
+ set_default_paths();
+ snprintf(path, sizeof(path), "." PCSX_DOT_DIR "%s", cfgfile_basename);
+ remove(path);
SysMessage("Failed loading plugins!");
return 1;
}