mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 09:10:05 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
13 lines
288 B
C#
13 lines
288 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon
|
|
{
|
|
public static class LibHacResultExtensions
|
|
{
|
|
public static Result ToHorizonResult(this LibHac.Result result)
|
|
{
|
|
return new Result((int)result.Module, (int)result.Description);
|
|
}
|
|
}
|
|
}
|