Skip to content

Commit

Permalink
Disable broken cores
Browse files Browse the repository at this point in the history
  • Loading branch information
albertofustinoni committed Sep 14, 2017
1 parent 0021aa9 commit bf8b7fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions RetriX.UWP/RetriX.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,6 @@
<Project>{d9b6bc43-a49f-4893-9556-5e9d51f7d5c1}</Project>
<Name>BeetlePSXRT</Name>
</ProjectReference>
<ProjectReference Include="..\BeetleSaturnRT\BeetleSaturnRT.vcxproj">
<Project>{63d18a8e-2580-47d0-854c-5b693ab774bf}</Project>
<Name>BeetleSaturnRT</Name>
</ProjectReference>
<ProjectReference Include="..\BeetleWswanRT\BeetleWswanRT.vcxproj">
<Project>{514bebc4-127b-4894-9905-d0f7a09b0287}</Project>
<Name>BeetleWswanRT</Name>
Expand Down Expand Up @@ -353,10 +349,6 @@
<Project>{a1897c60-c8ca-45ac-8917-a4dcfbcae523}</Project>
<Name>NestopiaRT</Name>
</ProjectReference>
<ProjectReference Include="..\ParallelN64RT\ParallelN64RT.vcxproj">
<Project>{95540631-8e61-475d-bd82-bafb7874eaca}</Project>
<Name>ParallelN64RT</Name>
</ProjectReference>
<ProjectReference Include="..\RetriX.Shared\RetriX.Shared.csproj">
<Project>{58b82d57-a956-4492-96fb-3e82fa82798a}</Project>
<Name>RetriX.Shared</Name>
Expand All @@ -369,10 +361,6 @@
<Project>{51ebaee3-774b-4060-adfa-c7c0a740b789}</Project>
<Name>VBAMRT</Name>
</ProjectReference>
<ProjectReference Include="..\YabauseRT\YabauseRT.vcxproj">
<Project>{a8f6202b-b329-4888-ba1a-8c841993b195}</Project>
<Name>YabauseRT</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
Expand Down
4 changes: 2 additions & 2 deletions RetriX.UWP/Services/EmulationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -86,7 +86,7 @@ public EmulationService(IUserDialogs dialogsService, ILocalizationService locali
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameGameGear", "ManufacturerNameSega", "\uf129", true, new HashSet<string>{ ".gg" }),
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaDrive", "ManufacturerNameSega", "\uf124", true, new HashSet<string>{ ".mds", ".md", ".smd", ".gen" }),
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaCD", "ManufacturerNameSega", "\uf124", false, new HashSet<string>{ ".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<string>{ ".pce" }),
new ViewModels.GameSystemVM(BeetlePCEFastRT.BeetlePCEFastCore.Instance, LocalizationService, "SystemNamePCEngineCD", "ManufacturerNameNEC", "\uf124", false, new HashSet<string>{ ".cue", ".ccd" }, CDImageExtensions),
Expand Down

0 comments on commit bf8b7fa

Please sign in to comment.