Miscellaneous tidy up

This commit is contained in:
jduncanator 2019-11-18 09:32:51 +11:00
parent 35eb245cc2
commit 4040e79867
4 changed files with 3 additions and 5 deletions

View file

@ -26,7 +26,7 @@ namespace Ryujinx.HLE.HOS.Applets
_interactiveSession = interactiveSession;
// TODO(jduncanator): Parse PlayerSelectConfig from input data
normalSession.Push(BuildResponse());
_normalSession.Push(BuildResponse());
AppletStateChanged?.Invoke(this, null);
return ResultCode.Success;

View file

@ -1,5 +1,4 @@
using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Applets.SoftwareKeyboard;
using Ryujinx.HLE.HOS.Applets.SoftwareKeyboard;
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using System;
using System.IO;

View file

@ -5,7 +5,7 @@ namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
[StructLayout(LayoutKind.Explicit)]
struct SoftwareKeyboardConfig
{
[FieldOffset(0)]
[FieldOffset(0x0)]
public SoftwareKeyboardType Type;
[FieldOffset(0x3AC)]

View file

@ -2,7 +2,6 @@
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
{