Implement RGB support for Galax RTX 2080 Super

This commit is contained in:
Topher Sheridan 2025-02-06 10:56:18 +11:00 committed by Adam Honse
parent 093ac9f37d
commit d1cdea47c7

View file

@ -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;
}