Apple II - set status of core as released, add file extensions to the released version of the open rom filter, and add author info
This commit is contained in:
parent
a06b7318c0
commit
80957a1071
|
@ -1887,7 +1887,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
return FormatFilter(
|
||||
"Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;%ARCH%",
|
||||
"Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;*.dsk;*.do;*.po;%ARCH%",
|
||||
"Disc Images", "*.cue;*.ccd;*.m3u",
|
||||
"NES", "*.nes;*.fds;*.nsf;%ARCH%",
|
||||
"Super NES", "*.smc;*.sfc;*.xml;%ARCH%",
|
||||
|
@ -1905,6 +1905,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
"Savestate", "*.state",
|
||||
"Genesis", "*.gen;*.md;*.smd;*.bin;*.cue;*.ccd;%ARCH%",
|
||||
"WonderSwan", "*.ws;*.wsc;%ARCH%",
|
||||
"Apple II", "*.dsk;*.do;*.po;%ARCH%",
|
||||
"All Files", "*.*");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|||
{
|
||||
[CoreAttributes(
|
||||
"Virtu",
|
||||
"TODO",
|
||||
"fool",
|
||||
isPorted: true,
|
||||
isReleased: false
|
||||
isReleased: true
|
||||
)]
|
||||
public partial class AppleII : IEmulator, IDriveLight
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue