diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-14 23:17:55 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-14 23:17:55 -0700 |
commit | 7d1aa2ab5e1b839f8cd15425f1004c7d1e952400 (patch) | |
tree | 90b86598dc59b53a093448d1f2a8f74260e85352 /gst.c | |
parent | b88dc02ba056c2b5891b1bb062a2ad44df5df544 (diff) |
Small horizontal interrupt fixes
Diffstat (limited to 'gst.c')
-rw-r--r-- | gst.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -423,7 +423,7 @@ uint32_t load_gst(genesis_context * gen, char * fname) fprintf(stderr, "Could not read ident code from %s\n", fname); goto error_close; } - if (memcmp(ident, "GST\x40\xE0", 5) != 0) { + if (memcmp(ident, "GST\x40\xE0", 3) != 0) { fprintf(stderr, "%s doesn't appear to be a GST savestate. The ident code is %c%c%c\\x%X\\x%X instead of GST\\x40\\xE0.\n", fname, ident[0], ident[1], ident[2], ident[3], ident[4]); goto error_close; } |