Fix incorrect GPU GL blend func values (#1612)

This commit is contained in:
gdkchan
2020-10-13 00:45:41 -03:00
committed by GitHub
parent d36c4bfba5
commit 329ba5b39b
2 changed files with 10 additions and 10 deletions

View File

@ -9,9 +9,9 @@ namespace Ryujinx.Graphics.GAL
Maximum,
AddGl = 0x8006,
SubtractGl = 0x8007,
ReverseSubtractGl = 0x8008,
MinimumGl = 0x800a,
MaximumGl = 0x800b
MinimumGl = 0x8007,
MaximumGl = 0x8008,
SubtractGl = 0x800a,
ReverseSubtractGl = 0x800b
}
}