Skip to content

Commit

Permalink
disable set gpu and cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
aarron-lee committed Jan 21, 2024
1 parent 38073d8 commit c6e07d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/steamPatch/steamPatch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function manageGpu() {
updatedGpuFreq >= minGpuFreq &&
updatedGpuFreq <= maxGpuFreq
) {
setGpu(updatedGpuFreq, updatedGpuFreq);
// setGpu(updatedGpuFreq, updatedGpuFreq);
}
}
// default GPU range
Expand Down Expand Up @@ -134,7 +134,7 @@ function manageTdp() {
updatedTDP <= maxTdp
) {
// set TDP
setTdp(updatedTDP);
// setTdp(updatedTDP);
}
} else {
// default TDP
Expand Down

0 comments on commit c6e07d9

Please sign in to comment.