
* Update audio renderer to REV13: Add support for compressor statistics and volume reset * XML docs * Disable stats reset * Wrong comment * Fix more XML docs * PR feedback
14 lines
357 B
C#
14 lines
357 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Audio
|
|
{
|
|
static class AudioResult
|
|
{
|
|
private const int ModuleId = 153;
|
|
|
|
public static Result DeviceNotFound => new(ModuleId, 1);
|
|
public static Result UnsupportedRevision => new(ModuleId, 2);
|
|
public static Result NotImplemented => new(ModuleId, 513);
|
|
}
|
|
}
|