From: notaz Date: Tue, 5 Apr 2011 20:15:10 +0000 (+0300) Subject: frontend: allow loading states from specified file X-Git-Tag: r9~94 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=de910c6be0c5523bd6c29b527ded4323fb8e85eb frontend: allow loading states from specified file --- diff --git a/frontend/main.c b/frontend/main.c index adf5e31f..f97610a6 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -225,6 +225,7 @@ int main(int argc, char *argv[]) char file[MAXPATHLEN] = ""; char path[MAXPATHLEN]; const char *cdfile = NULL; + const char *loadst_f = NULL; int psxout = 0; int loadst = 0; int i; @@ -255,6 +256,10 @@ int main(int argc, char *argv[]) cdfile = isofilename; } + else if (!strcmp(argv[i], "-loadf")) { + if (i+1 >= argc) break; + loadst_f = argv[++i]; + } else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "-help") || !strcmp(argv[i], "--help")) { @@ -340,6 +345,10 @@ int main(int argc, char *argv[]) int ret = emu_load_state(loadst - 1); printf("%s state %d\n", ret ? "failed to load" : "loaded", loadst); } + if (loadst_f) { + int ret = LoadState(loadst_f); + printf("%s state file: %s\n", ret ? "failed to load" : "loaded", loadst_f); + } } else menu_loop();