Added Steam Deck OLED support
This commit is contained in:
parent
8c617f8b40
commit
e16f008dfc
1 changed files with 4 additions and 1 deletions
|
@ -193,7 +193,10 @@ namespace HarmonyLinkLib
|
|||
}
|
||||
|
||||
// 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
|
||||
if (const std::shared_ptr<FCPUInfo> cpu_info = get_cpu_info()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue