We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ee9f0 commit a76e4f1Copy full SHA for a76e4f1
src/backend/utils/systeminfo/steamDeck.ts
@@ -7,7 +7,11 @@ type SteamDeckInfo =
7
| { isDeck: false; model?: undefined }
8
9
function getSteamDeckInfo(cpus: CpuInfo[], gpus: GPUInfo[]): SteamDeckInfo {
10
- if (cpus[0]?.model !== 'AMD Custom APU 0405') return { isDeck: false }
+ if (
11
+ cpus[0]?.model !== 'AMD Custom APU 0405' &&
12
+ cpus[0]?.model !== 'AMD Custom APU 0932'
13
+ )
14
+ return { isDeck: false }
15
16
const primaryGpu = gpus.at(0)
17
if (!primaryGpu || primaryGpu.vendorId !== '1002') return { isDeck: false }
0 commit comments