From d60932ad17c1257ff399ccf887a2c35fb5e508aa Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Wed, 8 Aug 2018 04:47:51 +0200 Subject: [PATCH] add a stubbed print --- Ryujinx.HLE/OsHle/Services/Am/ISelfController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ryujinx.HLE/OsHle/Services/Am/ISelfController.cs b/Ryujinx.HLE/OsHle/Services/Am/ISelfController.cs index 741be49735..9b3dded2cc 100644 --- a/Ryujinx.HLE/OsHle/Services/Am/ISelfController.cs +++ b/Ryujinx.HLE/OsHle/Services/Am/ISelfController.cs @@ -127,6 +127,8 @@ namespace Ryujinx.HLE.OsHle.Services.Am public long SetScreenShotImageOrientation(ServiceCtx Context) { int Orientation = Context.RequestData.ReadInt32(); + + Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed."); return 0; }