diff --git a/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs b/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs index 407e9b8154..fa0f069a4d 100644 --- a/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs +++ b/Ryujinx.Core/OsHle/Services/Am/IAudioController.cs @@ -33,7 +33,7 @@ namespace Ryujinx.Core.OsHle.Services.Am public long GetMainAppletExpectedMasterVolume(ServiceCtx Context) { - Context.ResponseData.Write(1); + Context.ResponseData.Write(1f); Logging.Stub(LogClass.ServiceAm, "Stubbed"); @@ -42,7 +42,7 @@ namespace Ryujinx.Core.OsHle.Services.Am public long GetLibraryAppletExpectedMasterVolume(ServiceCtx Context) { - Context.ResponseData.Write(1); + Context.ResponseData.Write(1f); Logging.Stub(LogClass.ServiceAm, "Stubbed");