mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 18:19:49 +00:00
Correct AMD Navi 22 GPU combination logic in device selection
This commit is contained in:
@@ -114,9 +114,10 @@ class HardwareCustomizer:
|
||||
continue
|
||||
elif gpu_type == "Discrete GPU":
|
||||
if gpu_codename.startswith("Navi"):
|
||||
_navi_indices.add(index)
|
||||
if gpu_codename == "Navi 22":
|
||||
_navi_22_indices.add(index)
|
||||
else:
|
||||
_navi_indices.add(index)
|
||||
continue
|
||||
elif gpu_manufacturer == "Intel":
|
||||
_intel_gpu_indices.add(index)
|
||||
|
||||
Reference in New Issue
Block a user