17200214df
* Add GPU name in status bar * Fixed like Ac_K suggest * Nit. * Minor fix * Minor change. * Nit. * Fixed for ATI vendor * Minor fix, again...
20 lines
528 B
C#
20 lines
528 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui
|
|
{
|
|
public class StatusUpdatedEventArgs : EventArgs
|
|
{
|
|
public bool VSyncEnabled;
|
|
public string HostStatus;
|
|
public string GameStatus;
|
|
public string GpuName;
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, string hostStatus, string gameStatus, string gpuName)
|
|
{
|
|
VSyncEnabled = vSyncEnabled;
|
|
HostStatus = hostStatus;
|
|
GameStatus = gameStatus;
|
|
GpuName = gpuName;
|
|
}
|
|
}
|
|
} |