mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 06:46:24 +02:00

Specifically, this setting causes the translation load core count to get reduced by two-thirds, for lower-power but still fast loading, and for unstable CPUs.
21 lines
557 B
C#
21 lines
557 B
C#
using System;
|
|
|
|
namespace Ryujinx.Headless.SDL2
|
|
{
|
|
class StatusUpdatedEventArgs(
|
|
bool vSyncEnabled,
|
|
string dockedMode,
|
|
string aspectRatio,
|
|
string gameStatus,
|
|
string fifoStatus,
|
|
string gpuName)
|
|
: EventArgs
|
|
{
|
|
public bool VSyncEnabled = vSyncEnabled;
|
|
public string DockedMode = dockedMode;
|
|
public string AspectRatio = aspectRatio;
|
|
public string GameStatus = gameStatus;
|
|
public string FifoStatus = fifoStatus;
|
|
public string GpuName = gpuName;
|
|
}
|
|
}
|