Added Steam Deck OLED support

This commit is contained in:
Jordon Brooks 2024-05-11 22:47:56 +01:00
parent 8c617f8b40
commit e16f008dfc
Signed by: jordon
GPG key ID: DBD9758CD53E786A

View file

@ -193,7 +193,10 @@ namespace HarmonyLinkLib
} }
// Set of known Steam Deck CPU model names // Set of known Steam Deck CPU model names
const std::set<std::string> steam_deck_models = {"amd custom apu 0405" /*, other models... */}; const std::set<std::string> steam_deck_models = {
"amd custom apu 0405" // LCD Steam Deck
"amd custom apu 0932", // OLED Steam Deck
};
// Check for Steam Deck by CPU model name // Check for Steam Deck by CPU model name
if (const std::shared_ptr<FCPUInfo> cpu_info = get_cpu_info()) { if (const std::shared_ptr<FCPUInfo> cpu_info = get_cpu_info()) {