From 15bdd27b9c0f62a7c07d57a0311f14d652ca3ba1 Mon Sep 17 00:00:00 2001 From: RedBlackAka <140876408+RedBlackAka@users.noreply.github.com> Date: Tue, 24 Feb 2026 18:06:29 +0100 Subject: [PATCH] citra-meta: Use dedicated GPU by default on AMD (#1783) --- src/citra_meta/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/citra_meta/main.cpp b/src/citra_meta/main.cpp index 92ea7756f..b7a7e5584 100644 --- a/src/citra_meta/main.cpp +++ b/src/citra_meta/main.cpp @@ -20,8 +20,10 @@ #ifdef _WIN32 extern "C" { -// tells Nvidia drivers to use the dedicated GPU by default on laptops with switchable graphics +// tells Nvidia and AMD drivers to use the dedicated GPU by default on laptops with switchable +// graphics __declspec(dllexport) unsigned long NvOptimusEnablement = 0x00000001; +__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1; } #endif