mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-31 14:36:27 -05:00
Add Docked/Handheld text on status bar (#1205)
* Add Dock/Handheld on status bar * Simplified the code & move next to V-Sync * Nit.
This commit is contained in:
@@ -5,16 +5,18 @@ namespace Ryujinx.Ui
|
||||
public class StatusUpdatedEventArgs : EventArgs
|
||||
{
|
||||
public bool VSyncEnabled;
|
||||
public string DockedMode;
|
||||
public string HostStatus;
|
||||
public string GameStatus;
|
||||
public string GpuName;
|
||||
|
||||
public StatusUpdatedEventArgs(bool vSyncEnabled, string hostStatus, string gameStatus, string gpuName)
|
||||
public StatusUpdatedEventArgs(bool vSyncEnabled, string dockedMode, string hostStatus, string gameStatus, string gpuName)
|
||||
{
|
||||
VSyncEnabled = vSyncEnabled;
|
||||
DockedMode = dockedMode;
|
||||
HostStatus = hostStatus;
|
||||
GameStatus = gameStatus;
|
||||
GpuName = gpuName;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user