Reorganise AppletFifo

This commit is contained in:
jduncanator 2019-11-14 15:34:27 +11:00
parent 63926a44b4
commit 70709ab5bf
4 changed files with 6 additions and 5 deletions

View file

@ -11,7 +11,7 @@ namespace Ryujinx.HLE.HOS.Applets
{
_appletMapping = new Dictionary<AppletId, Type>
{
{ AppletId.PlayerSelect, typeof(PlayerSelect) }
{ AppletId.PlayerSelect, typeof(PlayerSelectApplet) }
};
}

View file

@ -1,4 +1,4 @@
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using Ryujinx.HLE.HOS.Services.Am;
using System;
namespace Ryujinx.HLE.HOS.Applets

View file

@ -1,10 +1,11 @@
using Ryujinx.HLE.HOS.Services.Account.Acc;
using Ryujinx.HLE.HOS.Services.Am;
using System;
using System.IO;
namespace Ryujinx.HLE.HOS.Applets
{
internal class PlayerSelect : IApplet
internal class PlayerSelectApplet : IApplet
{
private Horizon _system;
@ -13,7 +14,7 @@ namespace Ryujinx.HLE.HOS.Applets
public event EventHandler AppletStateChanged;
public PlayerSelect(Horizon system)
public PlayerSelectApplet(Horizon system)
{
_system = system;
}

View file

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Applets
namespace Ryujinx.HLE.HOS.Services.Am
{
internal class AppletFifo<T> : IEnumerable<T>
{