From d1cdea47c797ecf669ae1a5420e33c80a79558ba Mon Sep 17 00:00:00 2001 From: Topher Sheridan Date: Thu, 6 Feb 2025 10:56:18 +1100 Subject: [PATCH] Implement RGB support for Galax RTX 2080 Super --- Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp b/Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp index 2e6bb365..cfc9a276 100644 --- a/Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp +++ b/Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp @@ -30,7 +30,7 @@ bool TestForGalaxGPUController(i2c_smbus_interface* bus, unsigned char address) unsigned char res = bus->i2c_smbus_read_byte_data(address, 0x00); unsigned char res2 = bus->i2c_smbus_read_byte_data(address, 0x01); - if((res == 0x27 || res == 0x26) && res2 == 0x10) + if((res == 0x27 || res == 0x26) && (res2 == 0x10 || res2 == 0x20)) { pass = true; }