Skip to content

Commit bf8b7fa

Browse files
committed
Disable broken cores
1 parent 0021aa9 commit bf8b7fa

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

RetriX.UWP/RetriX.UWP.csproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,6 @@
297297
<Project>{d9b6bc43-a49f-4893-9556-5e9d51f7d5c1}</Project>
298298
<Name>BeetlePSXRT</Name>
299299
</ProjectReference>
300-
<ProjectReference Include="..\BeetleSaturnRT\BeetleSaturnRT.vcxproj">
301-
<Project>{63d18a8e-2580-47d0-854c-5b693ab774bf}</Project>
302-
<Name>BeetleSaturnRT</Name>
303-
</ProjectReference>
304300
<ProjectReference Include="..\BeetleWswanRT\BeetleWswanRT.vcxproj">
305301
<Project>{514bebc4-127b-4894-9905-d0f7a09b0287}</Project>
306302
<Name>BeetleWswanRT</Name>
@@ -353,10 +349,6 @@
353349
<Project>{a1897c60-c8ca-45ac-8917-a4dcfbcae523}</Project>
354350
<Name>NestopiaRT</Name>
355351
</ProjectReference>
356-
<ProjectReference Include="..\ParallelN64RT\ParallelN64RT.vcxproj">
357-
<Project>{95540631-8e61-475d-bd82-bafb7874eaca}</Project>
358-
<Name>ParallelN64RT</Name>
359-
</ProjectReference>
360352
<ProjectReference Include="..\RetriX.Shared\RetriX.Shared.csproj">
361353
<Project>{58b82d57-a956-4492-96fb-3e82fa82798a}</Project>
362354
<Name>RetriX.Shared</Name>
@@ -369,10 +361,6 @@
369361
<Project>{51ebaee3-774b-4060-adfa-c7c0a740b789}</Project>
370362
<Name>VBAMRT</Name>
371363
</ProjectReference>
372-
<ProjectReference Include="..\YabauseRT\YabauseRT.vcxproj">
373-
<Project>{a8f6202b-b329-4888-ba1a-8c841993b195}</Project>
374-
<Name>YabauseRT</Name>
375-
</ProjectReference>
376364
</ItemGroup>
377365
<ItemGroup />
378366
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">

RetriX.UWP/Services/EmulationService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public EmulationService(IUserDialogs dialogsService, ILocalizationService locali
7777
{
7878
new ViewModels.GameSystemVM(FCEUMMRT.FCEUMMCore.Instance, LocalizationService, "SystemNameNES", "ManufacturerNameNintendo", "\uf118"),
7979
new ViewModels.GameSystemVM(Snes9XRT.Snes9XCore.Instance, LocalizationService, "SystemNameSNES", "ManufacturerNameNintendo", "\uf119"),
80-
new ViewModels.GameSystemVM(ParallelN64RT.ParallelN64Core.Instance, LocalizationService, "SystemNameNintendo64", "ManufacturerNameNintendo", "\uf116"),
80+
//new ViewModels.GameSystemVM(ParallelN64RT.ParallelN64Core.Instance, LocalizationService, "SystemNameNintendo64", "ManufacturerNameNintendo", "\uf116"),
8181
new ViewModels.GameSystemVM(GambatteRT.GambatteCore.Instance, LocalizationService, "SystemNameGameBoy", "ManufacturerNameNintendo", "\uf11b"),
8282
new ViewModels.GameSystemVM(VBAMRT.VBAMCore.Instance, LocalizationService, "SystemNameGameBoyAdvance", "ManufacturerNameNintendo", "\uf115"),
8383
new ViewModels.GameSystemVM(MelonDSRT.MelonDSCore.Instance, LocalizationService, "SystemNameDS", "ManufacturerNameNintendo", "\uf117"),
@@ -86,7 +86,7 @@ public EmulationService(IUserDialogs dialogsService, ILocalizationService locali
8686
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameGameGear", "ManufacturerNameSega", "\uf129", true, new HashSet<string>{ ".gg" }),
8787
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaDrive", "ManufacturerNameSega", "\uf124", true, new HashSet<string>{ ".mds", ".md", ".smd", ".gen" }),
8888
new ViewModels.GameSystemVM(GPGXRT.GPGXCore.Instance, LocalizationService, "SystemNameMegaCD", "ManufacturerNameSega", "\uf124", false, new HashSet<string>{ ".bin", ".cue", ".iso" }, CDImageExtensions),
89-
new ViewModels.GameSystemVM(BeetleSaturnRT.BeetleSaturnCore.Instance, LocalizationService, "SystemNameSaturn", "ManufacturerNameSega", "\uf124", false, null, CDImageExtensions),
89+
//new ViewModels.GameSystemVM(BeetleSaturnRT.BeetleSaturnCore.Instance, LocalizationService, "SystemNameSaturn", "ManufacturerNameSega", "\uf124", false, null, CDImageExtensions),
9090
new ViewModels.GameSystemVM(BeetlePSXRT.BeetlePSXCore.Instance, LocalizationService, "SystemNamePlayStation", "ManufacturerNameSony", "\uf128", false, null, CDImageExtensions),
9191
new ViewModels.GameSystemVM(BeetlePCEFastRT.BeetlePCEFastCore.Instance, LocalizationService, "SystemNamePCEngine", "ManufacturerNameNEC", "\uf124", true, new HashSet<string>{ ".pce" }),
9292
new ViewModels.GameSystemVM(BeetlePCEFastRT.BeetlePCEFastCore.Instance, LocalizationService, "SystemNamePCEngineCD", "ManufacturerNameNEC", "\uf124", false, new HashSet<string>{ ".cue", ".ccd" }, CDImageExtensions),

0 commit comments

Comments
 (0)