mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Optimized mode switch from Ultimate
This commit is contained in:
@@ -419,13 +419,6 @@ namespace GHelper
|
||||
}
|
||||
|
||||
|
||||
private void ButtonOptimized_Click(object? sender, EventArgs e)
|
||||
{
|
||||
AppConfig.Set("gpu_auto", (AppConfig.Get("gpu_auto") == 1) ? 0 : 1);
|
||||
VisualiseGPUMode();
|
||||
gpuControl.AutoGPUMode();
|
||||
}
|
||||
|
||||
private void ButtonScreenAuto_Click(object? sender, EventArgs e)
|
||||
{
|
||||
AppConfig.Set("screen_auto", 1);
|
||||
@@ -753,6 +746,13 @@ namespace GHelper
|
||||
}
|
||||
|
||||
|
||||
private void ButtonOptimized_Click(object? sender, EventArgs e)
|
||||
{
|
||||
AppConfig.Set("gpu_auto", (AppConfig.Get("gpu_auto") == 1) ? 0 : 1);
|
||||
VisualiseGPUMode();
|
||||
gpuControl.AutoGPUMode(true);
|
||||
}
|
||||
|
||||
private void ButtonStopGPU_Click(object? sender, EventArgs e)
|
||||
{
|
||||
gpuControl.KillGPUApps();
|
||||
|
||||
Reference in New Issue
Block a user