Skip to content

Commit d1cdea4

Browse files
topher-auCalcProgrammer1
authored andcommitted
Implement RGB support for Galax RTX 2080 Super
1 parent 093ac9f commit d1cdea4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bool TestForGalaxGPUController(i2c_smbus_interface* bus, unsigned char address)
3030
unsigned char res = bus->i2c_smbus_read_byte_data(address, 0x00);
3131
unsigned char res2 = bus->i2c_smbus_read_byte_data(address, 0x01);
3232

33-
if((res == 0x27 || res == 0x26) && res2 == 0x10)
33+
if((res == 0x27 || res == 0x26) && (res2 == 0x10 || res2 == 0x20))
3434
{
3535
pass = true;
3636
}

0 commit comments

Comments
 (0)