Add various error codes to Audio (#1201)
The error codes were taken from Switchbrew (switchbrew.org/wiki/Error_codes)
This commit is contained in:
parent
28e12dad0f
commit
b0f0bd205d
1 changed files with 8 additions and 2 deletions
|
@ -10,6 +10,12 @@ namespace Ryujinx.HLE.HOS.Services.Audio
|
|||
DeviceNotFound = (1 << ErrorCodeShift) | ModuleId,
|
||||
UnsupportedRevision = (2 << ErrorCodeShift) | ModuleId,
|
||||
UnsupportedSampleRate = (3 << ErrorCodeShift) | ModuleId,
|
||||
OpusInvalidInput = (6 << ErrorCodeShift) | ModuleId
|
||||
BufferSizeTooSmall = (4 << ErrorCodeShift) | ModuleId,
|
||||
OpusInvalidInput = (6 << ErrorCodeShift) | ModuleId,
|
||||
TooManyBuffersInUse = (8 << ErrorCodeShift) | ModuleId,
|
||||
InvalidChannelCount = (10 << ErrorCodeShift) | ModuleId,
|
||||
InvalidOperation = (513 << ErrorCodeShift) | ModuleId,
|
||||
InvalidHandle = (1536 << ErrorCodeShift) | ModuleId,
|
||||
OutputAlreadyStarted = (1540 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue