We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca106f commit fd285d0Copy full SHA for fd285d0
hdl_dump.c
@@ -1085,7 +1085,7 @@ inject(const dict_t *config,
1085
memmove(game.name, name, sizeof(game.name) - 1);
1086
game.name[sizeof(game.name) - 1] = '\0';
1087
game.layer_break = 0;
1088
- if (strcmp(&input[sizeof(input) - 4], ".zso") == 0) {
+ if (strcmp(&input[strlen(input) - 4], ".zso") != 0) {
1089
result = isofs_get_ps2_cdvd_info(iin, &info);
1090
if (result == RET_OK)
1091
if (info.layer_pvd != 0)
0 commit comments