Reorganise AppletFifo

This commit is contained in:
jduncanator 2019-11-14 15:34:27 +11:00
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> _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; using System;
namespace Ryujinx.HLE.HOS.Applets namespace Ryujinx.HLE.HOS.Applets

View file

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

View file

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