From e16f008dfc0f19dc4ba0b6e84f3c8485ba4d89a1 Mon Sep 17 00:00:00 2001 From: Jordon Brooks Date: Sat, 11 May 2024 22:47:56 +0100 Subject: [PATCH] Added Steam Deck OLED support --- HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp b/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp index 0884ca1..2f5d6fc 100644 --- a/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp +++ b/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp @@ -193,7 +193,10 @@ namespace HarmonyLinkLib } // Set of known Steam Deck CPU model names - const std::set steam_deck_models = {"amd custom apu 0405" /*, other models... */}; + const std::set 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 cpu_info = get_cpu_info()) {