mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-21 06:03:52 +00:00
Add PowerControl
Add NeptuneController support (kind of works) Add Neptune controller directly from hidapi (to reduce rate of requests) Add README
This commit is contained in:
parent
4d5c0cd466
commit
b4c07be511
34 changed files with 2716 additions and 28 deletions
|
|
@ -85,7 +85,6 @@ namespace PerformanceOverlay
|
|||
notifyIcon.Text = TitleWithVersion;
|
||||
notifyIcon.Visible = true;
|
||||
notifyIcon.ContextMenuStrip = contextMenu;
|
||||
notifyIcon.Click += NotifyIcon_Click;
|
||||
|
||||
osdTimer = new System.Windows.Forms.Timer(components);
|
||||
osdTimer.Tick += OsdTimer_Tick;
|
||||
|
|
@ -169,6 +168,8 @@ namespace PerformanceOverlay
|
|||
|
||||
try
|
||||
{
|
||||
osdClose();
|
||||
|
||||
if (osd == null)
|
||||
osd = new OSD("PerformanceOverlay");
|
||||
|
||||
|
|
@ -201,11 +202,11 @@ namespace PerformanceOverlay
|
|||
{
|
||||
if (osd != null)
|
||||
osd.Dispose();
|
||||
osd = null;
|
||||
}
|
||||
catch (SystemException)
|
||||
{
|
||||
}
|
||||
osd = null;
|
||||
}
|
||||
|
||||
private uint osdEmbedGraph(ref uint offset, ref String osdOverlay, String name, int dwWidth, int dwHeight, int dwMargin, float fltMin, float fltMax, EMBEDDED_OBJECT_GRAPH dwFlags)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue