Skip to content

Commit 644ce8e

Browse files
params: add Z2E to known handheld GPUs
1 parent 5399bf1 commit 644ce8e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/overlay_params.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,15 +1315,15 @@ void presets(int preset, struct overlay_params *params, bool inherit) {
13151315

13161316
// Disable some options if steamdeck / other known handhelds
13171317
for (auto gpu : gpus->available_gpus) {
1318-
if (gpu->device_id == 0x1435 || gpu->device_id == 0x163f || gpu->device_id == 0x1681 || gpu->device_id == 0x15bf){
1318+
if (gpu->device_id == 0x1435 || gpu->device_id == 0x163f || gpu->device_id == 0x1681 || gpu->device_id == 0x15bf || gpu->device_id == 0x150e){
13191319
add_to_options(params, "gpu_fan", "0");
13201320
add_to_options(params, "gpu_junction_temp", "0");
13211321
add_to_options(params, "gpu_voltage", "0");
13221322
add_to_options(params, "gpu_mem_temp", "0");
13231323
add_to_options(params, "gpu_efficiency", "0");
13241324
}
1325-
// Rembrandt and Phoenix APUs (Z1, Z1E, Z2 Go)
1326-
if (gpu->device_id == 0x1681 || gpu->device_id == 0x15bf){
1325+
// Rembrandt, Phoenix, Strix APUs (Z1, Z1E, Z2 Go, Z2E)
1326+
if (gpu->device_id == 0x1681 || gpu->device_id == 0x15bf || gpu->device_id == 0x150e){
13271327
add_to_options(params, "gpu_power_limit", "0");
13281328
}
13291329
}

0 commit comments

Comments
 (0)