a9cb31e75f
* gui: Refactoring Part 1 * Fix ProfileDialog.glade path * Fix Application.Quit assert * Fix TitleUpdateWindow parent * Fix TitleUpdate selected item * Remove extra line in TitleUpdateWindow * Fix empty assign of Enum.TryParse * Add Patrons list in the About Window * update about error messages
24 lines
715 B
C#
24 lines
715 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui
|
|
{
|
|
public class StatusUpdatedEventArgs : EventArgs
|
|
{
|
|
public bool VSyncEnabled;
|
|
public string DockedMode;
|
|
public string AspectRatio;
|
|
public string GameStatus;
|
|
public string FifoStatus;
|
|
public string GpuName;
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, string dockedMode, string aspectRatio, string gameStatus, string fifoStatus, string gpuName)
|
|
{
|
|
VSyncEnabled = vSyncEnabled;
|
|
DockedMode = dockedMode;
|
|
AspectRatio = aspectRatio;
|
|
GameStatus = gameStatus;
|
|
FifoStatus = fifoStatus;
|
|
GpuName = gpuName;
|
|
}
|
|
}
|
|
} |