misc: chore: Fix object creation everywhere else

This commit is contained in:
Evan Husted 2025-01-26 15:28:18 -06:00
parent 9e1a13b2ee
commit c7db948fb3
5 changed files with 12 additions and 12 deletions

View file

@ -9,7 +9,7 @@ namespace Ryujinx.Horizon.Common
private const int ModuleMax = 1 << ModuleBits;
private const int DescriptionMax = 1 << DescriptionBits;
public static Result Success { get; } = new Result(0, 0);
public static Result Success { get; } = new(0, 0);
public int ErrorCode { get; }