mirror of https://github.com/snes9xgit/snes9x.git
[BS-X] Added *.bs extension detection
This commit is contained in:
parent
cf00193655
commit
38b95261d0
|
@ -422,7 +422,7 @@ S9xOpenROMDialog (void)
|
|||
{
|
||||
"*.smc", "*.SMC", "*.fig", "*.FIG", "*.sfc", "*.SFC",
|
||||
"*.jma", "*.JMA", "*.zip", "*.ZIP", "*.gd3", "*.GD3",
|
||||
"*.swc", "*.SWC", "*.gz" , "*.GZ",
|
||||
"*.swc", "*.SWC", "*.gz" , "*.GZ", "*.bs", "*.BS",
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
|
@ -178,7 +178,7 @@ void retro_get_system_info(struct retro_system_info *info)
|
|||
|
||||
info->library_name = "Snes9x";
|
||||
info->library_version = VERSION;
|
||||
info->valid_extensions = "smc|sfc|swc|fig";
|
||||
info->valid_extensions = "smc|sfc|swc|fig|bs";
|
||||
info->need_fullpath = false;
|
||||
info->block_extract = false;
|
||||
}
|
||||
|
|
|
@ -6991,6 +6991,7 @@ void MakeExtFile(void)
|
|||
|
||||
out<<"smcN"<<endl<<"zipY"<<endl<<"gzY" <<endl<<"swcN"<<endl<<"figN"<<endl;
|
||||
out<<"sfcN"<<endl;
|
||||
out<<"bsN"<<endl;
|
||||
out<<"jmaY";
|
||||
out.close();
|
||||
SetFileAttributes(TEXT("Valid.Ext"), FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY);
|
||||
|
|
Loading…
Reference in New Issue