Skip to content

Commit

Permalink
Fix #1320
Browse files Browse the repository at this point in the history
  • Loading branch information
BartoszCichecki committed Jun 3, 2024
1 parent 4250699 commit f9e8af4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LenovoLegionToolkit.Lib/Controllers/GPUOverclockController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public GPUOverclockController(GPUOverclockSettings settings,
_nativeWindowsMessageListener.Changed += NativeWindowsMessageListenerOnChanged;
}

public static int GetMaxCoreDeltaMhz() => 250;
public static int GetMaxCoreDeltaMhz() => 500;

public static int GetMaxMemoryDeltaMhz()
{
Expand Down Expand Up @@ -210,8 +210,8 @@ private async void NativeWindowsMessageListenerOnChanged(object? sender, NativeW

private static int GetMaxMemoryDeltaMhz(PhysicalGPU? gpu) => gpu?.MemoryInformation.RAMMaker switch
{
GPUMemoryMaker.Samsung => 1000,
_ => 500
GPUMemoryMaker.Samsung => 1500,
_ => 750
};

private static void SetOverclockInfo(PhysicalGPU gpu, GPUOverclockInfo info)
Expand Down

0 comments on commit f9e8af4

Please sign in to comment.