mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-03-24 08:51:07 -04:00
Implement RGB support for Galax RTX 2080 Super
This commit is contained in:
committed by
Adam Honse
parent
093ac9f37d
commit
d1cdea47c7
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user