misc: chore: Fix object creation in GAL

This commit is contained in:
Evan Husted
2025-01-26 15:17:37 -06:00
parent 15d1528774
commit 4e47c86f90
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ namespace Ryujinx.Graphics.GAL
{
public readonly struct ComputeSize
{
public readonly static ComputeSize VtgAsCompute = new ComputeSize(32, 32, 1);
public readonly static ComputeSize VtgAsCompute = new(32, 32, 1);
public readonly int X;
public readonly int Y;