Update nesemu1.cc

This commit is contained in:
Gaetano Checinski 2021-01-07 01:19:45 +00:00 committed by GitHub
parent 28316891e9
commit 1233bc30c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1842,7 +1842,7 @@ int SelectGameFromZip(void) {
rc = 0;
if ((line = GetLine())) {
i = MAX(0, MIN(zipgames_.i - 1, atoi(line)));
uri = xasprintf("zip:%s", zipgames_.p[i]);
uri = xasprintf("%s", zipgames_.p[i]);
rc = PlayGame(uri, NULL);
free(uri);
} else {