mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Merge pull request #18984 from GermanAizek/fix-flag-after-9
[GPU] Fixed bug in GEExpressionFunctions::getFieldValue with GECmdField::FLAG_AFTER_9
This commit is contained in:
commit
d0afdcd94f
@ -770,7 +770,7 @@ uint32_t GEExpressionFunctions::getFieldValue(GECmdFormat fmt, GECmdField field,
|
||||
case GECmdField::FLAG_AFTER_8:
|
||||
return (value >> 8) & 1;
|
||||
case GECmdField::FLAG_AFTER_9:
|
||||
return (value >> 8) & 1;
|
||||
return (value >> 9) & 1;
|
||||
case GECmdField::FLAG_AFTER_10:
|
||||
return (value >> 10) & 1;
|
||||
case GECmdField::FLAG_AFTER_11:
|
||||
|
Loading…
Reference in New Issue
Block a user