Skip to content

Commit

Permalink
Added Steam Deck OLED support
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordonbc committed May 11, 2024
1 parent 8c617f8 commit e16f008
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit e16f008

Please sign in to comment.