From 996c7bc847ba18ee85b1c1e8f10c109efaa11a6f Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 26 May 2015 23:43:55 +0000 Subject: [PATCH] Add apple II to the core picker --- BizHawk.Emulation.Common/SystemLookup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Common/SystemLookup.cs b/BizHawk.Emulation.Common/SystemLookup.cs index a079f690f6..b60b187d49 100644 --- a/BizHawk.Emulation.Common/SystemLookup.cs +++ b/BizHawk.Emulation.Common/SystemLookup.cs @@ -33,7 +33,8 @@ namespace BizHawk.Emulation.Common new SystemInfo { SystemId = "TI83", FullName = "TI-83 Calculator" }, new SystemInfo { SystemId = "WSWAN", FullName = "WonderSwan" }, - new SystemInfo { SystemId = "C64", FullName = "Commodore 64" } + new SystemInfo { SystemId = "C64", FullName = "Commodore 64" }, + new SystemInfo { SystemId = "AppleII", FullName = "Apple II" } }; public SystemInfo this[string systemId]