X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FCart.c;h=cf169517ea9f9d747d6e10b01e7c9aa31c6765bd;hb=d0ae0cb4bb73e6e2fc10e7b19a5a72a012db6d6a;hp=cf335804d7e76524231bf65ddee4173704b76762;hpb=8ef001cc89adfb193dd6bfb31e25007abfece972;p=picodrive.git diff --git a/Pico/Cart.c b/Pico/Cart.c index cf33580..cf16951 100644 --- a/Pico/Cart.c +++ b/Pico/Cart.c @@ -48,7 +48,7 @@ pm_file *pm_open(const char *path) ext = zipentry->name+strlen(zipentry->name)-3; for (i = 0; i < sizeof(rom_exts)/sizeof(rom_exts[0]); i++) - if (!strcasecmp(ext, rom_exts[i]) == 0) goto found_rom_zip; + if (strcasecmp(ext, rom_exts[i]) == 0) goto found_rom_zip; } /* zipfile given, but nothing found suitable for us inside */