From bf8b7fa6121ffa7e0d593553faef33a978ea2980 Mon Sep 17 00:00:00 2001 From: Alberto Fustinoni Date: Thu, 14 Sep 2017 23:09:30 +0900 Subject: [PATCH] Disable broken cores --- RetriX.UWP/RetriX.UWP.csproj | 12 ------------ RetriX.UWP/Services/EmulationService.cs | 4 ++-- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/RetriX.UWP/RetriX.UWP.csproj b/RetriX.UWP/RetriX.UWP.csproj index f1b2c4c..927b42d 100644 --- a/RetriX.UWP/RetriX.UWP.csproj +++ b/RetriX.UWP/RetriX.UWP.csproj @@ -297,10 +297,6 @@ {d9b6bc43-a49f-4893-9556-5e9d51f7d5c1} BeetlePSXRT - - {63d18a8e-2580-47d0-854c-5b693ab774bf} - BeetleSaturnRT - {514bebc4-127b-4894-9905-d0f7a09b0287} BeetleWswanRT @@ -353,10 +349,6 @@ {a1897c60-c8ca-45ac-8917-a4dcfbcae523} NestopiaRT - - {95540631-8e61-475d-bd82-bafb7874eaca} - ParallelN64RT - {58b82d57-a956-4492-96fb-3e82fa82798a} RetriX.Shared @@ -369,10 +361,6 @@ {51ebaee3-774b-4060-adfa-c7c0a740b789} VBAMRT - - {a8f6202b-b329-4888-ba1a-8c841993b195} - YabauseRT - diff --git a/RetriX.UWP/Services/EmulationService.cs b/RetriX.UWP/Services/EmulationService.cs index 01783bd..b1f0cd2 100644 --- a/RetriX.UWP/Services/EmulationService.cs +++ b/RetriX.UWP/Services/EmulationService.cs @@ -77,7 +77,7 @@ public EmulationService(IUserDialogs dialogsService, ILocalizationService locali { new ViewModels.GameSystemVM(FCEUMMRT.FCEUMMCore.Instance, LocalizationService, "SystemNameNES", "ManufacturerNameNintendo", "\uf118"), new ViewModels.GameSystemVM(Snes9XRT.Snes9XCore.Instance, LocalizationService, "SystemNameSNES", "ManufacturerNameNintendo", "\uf119"), - new ViewModels.GameSystemVM(ParallelN64RT.ParallelN64Core.Instance, LocalizationService, "SystemNameNintendo64", "ManufacturerNameNintendo", "\uf116"), + //new ViewModels.GameSystemVM(ParallelN64RT.ParallelN64Core.Instance, LocalizationService, "SystemNameNintendo64", "ManufacturerNameNintendo", "\uf116"), new ViewModels.GameSystemVM(GambatteRT.GambatteCore.Instance, LocalizationService, "SystemNameGameBoy", "ManufacturerNameNintendo", "\uf11b"), new ViewModels.GameSystemVM(VBAMRT.VBAMCore.Instance, LocalizationService, "SystemNameGameBoyAdvance", "ManufacturerNameNintendo", "\uf115"), new ViewModels.GameSystemVM(MelonDSRT.MelonDSCore.Instance, LocalizationService, "SystemNameDS", "ManufacturerNameNintendo", "\uf117"), @@ -86,7 +86,7 @@ public EmulationService(IUserDialogs dialogsService, ILocalizationService locali new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameGameGear", "ManufacturerNameSega", "\uf129", true, new HashSet{ ".gg" }), new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaDrive", "ManufacturerNameSega", "\uf124", true, new HashSet{ ".mds", ".md", ".smd", ".gen" }), new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaCD", "ManufacturerNameSega", "\uf124", false, new HashSet{ ".bin", ".cue", ".iso" }, CDImageExtensions), - new ViewModels.GameSystemVM(BeetleSaturnRT.BeetleSaturnCore.Instance, LocalizationService, "SystemNameSaturn", "ManufacturerNameSega", "\uf124", false, null, CDImageExtensions), + //new ViewModels.GameSystemVM(BeetleSaturnRT.BeetleSaturnCore.Instance, LocalizationService, "SystemNameSaturn", "ManufacturerNameSega", "\uf124", false, null, CDImageExtensions), new ViewModels.GameSystemVM(BeetlePSXRT.BeetlePSXCore.Instance, LocalizationService, "SystemNamePlayStation", "ManufacturerNameSony", "\uf128", false, null, CDImageExtensions), new ViewModels.GameSystemVM(BeetlePCEFastRT.BeetlePCEFastCore.Instance, LocalizationService, "SystemNamePCEngine", "ManufacturerNameNEC", "\uf124", true, new HashSet{ ".pce" }), new ViewModels.GameSystemVM(BeetlePCEFastRT.BeetlePCEFastCore.Instance, LocalizationService, "SystemNamePCEngineCD", "ManufacturerNameNEC", "\uf124", false, new HashSet{ ".cue", ".ccd" }, CDImageExtensions),