Skip to content

Commit a1302b2

Browse files
committed
Added the second AMD APU code value to Steam Deck detection
1 parent 36ee9f0 commit a1302b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/systeminfo/steamDeck.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type SteamDeckInfo =
77
| { isDeck: false; model?: undefined }
88

99
function getSteamDeckInfo(cpus: CpuInfo[], gpus: GPUInfo[]): SteamDeckInfo {
10-
if (cpus[0]?.model !== 'AMD Custom APU 0405') return { isDeck: false }
10+
if (cpus[0]?.model !== 'AMD Custom APU 0405' && cpus[0]?.model !== 'AMD Custom APU 0932') return { isDeck: false }
1111

1212
const primaryGpu = gpus.at(0)
1313
if (!primaryGpu || primaryGpu.vendorId !== '1002') return { isDeck: false }

0 commit comments

Comments
 (0)