Minor code formatting (#4498)

This commit is contained in:
gdkchan 2023-03-04 10:43:08 -03:00 committed by GitHub
parent 155736c986
commit 4f3af839be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 95 additions and 110 deletions

View file

@ -133,7 +133,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
// PopOutData() -> object<nn::am::service::IStorage>
public ResultCode PopOutData(ServiceCtx context)
{
if(_normalSession.TryPop(out byte[] data))
if (_normalSession.TryPop(out byte[] data))
{
MakeObject(context, new IStorage(data));
@ -160,7 +160,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
// PopInteractiveOutData() -> object<nn::am::service::IStorage>
public ResultCode PopInteractiveOutData(ServiceCtx context)
{
if(_interactiveSession.TryPop(out byte[] data))
if (_interactiveSession.TryPop(out byte[] data))
{
MakeObject(context, new IStorage(data));