We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ee9f0 commit a1302b2Copy full SHA for a1302b2
src/backend/utils/systeminfo/steamDeck.ts
@@ -7,7 +7,7 @@ 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 (cpus[0]?.model !== 'AMD Custom APU 0405' && cpus[0]?.model !== 'AMD Custom APU 0932') return { isDeck: false }
11
12
const primaryGpu = gpus.at(0)
13
if (!primaryGpu || primaryGpu.vendorId !== '1002') return { isDeck: false }
0 commit comments