add swc ext support

This commit is contained in:
dborth 2008-10-19 18:07:38 +00:00
parent 757637d651
commit b89d839da0

View File

@ -285,7 +285,8 @@ bool IsValidROM(int method)
{ {
if (stricmp(p, ".smc") == 0 || if (stricmp(p, ".smc") == 0 ||
stricmp(p, ".fig") == 0 || stricmp(p, ".fig") == 0 ||
stricmp(p, ".sfc") == 0) stricmp(p, ".sfc") == 0 ||
stricmp(p, ".swc") == 0)
{ {
return true; return true;
} }