diff options
author | Ac_K <Acoustik666@gmail.com> | 2018-04-23 05:02:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-23 05:02:30 +0200 |
commit | 4e24866b47cbfd1179bb7a135338fcef1be80941 (patch) | |
tree | 46a07f3638f55b01f9dd1c708996d02dd713e90b | |
parent | db0aa54233d14b8feaf9fd382a3d64fda3614c4b (diff) |
Update IAudioController.cs
-rw-r--r-- | Ryujinx.Core/OsHle/Services/Am/IAudioController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs b/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs index fa0f069a..3b2a6951 100644 --- a/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs +++ b/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs @@ -23,8 +23,8 @@ namespace Ryujinx.Core.OsHle.Services.Am public long SetExpectedMasterVolume(ServiceCtx Context) { - float Unknown0 = Context.RequestData.ReadSingle(); - float Unknown1 = Context.RequestData.ReadSingle(); + float AppletVolume = Context.RequestData.ReadSingle(); + float LibraryAppletVolume = Context.RequestData.ReadSingle(); Logging.Stub(LogClass.ServiceAm, "Stubbed"); |