mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-09 10:02:43 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
15 lines
300 B
C#
15 lines
300 B
C#
namespace Ryujinx.Graphics.Nvdec.Vp9
|
|
{
|
|
internal struct InternalErrorInfo
|
|
{
|
|
public CodecErr ErrorCode;
|
|
|
|
public void InternalError(CodecErr error, string message)
|
|
{
|
|
ErrorCode = error;
|
|
|
|
throw new InternalErrorException(message);
|
|
}
|
|
}
|
|
}
|