[GB.IMAGE]
* BUG: Fix the macro that splits a Gambas color into its components and revert the alpha value. git-svn-id: svn://localhost/gambas/trunk@2541 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
71af715f2a
commit
d752c36ade
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ typedef
|
|||
_b = (_color) & 0xFF; \
|
||||
_g = ((_color) >> 8) & 0xFF; \
|
||||
_r = ((_color) >> 16) & 0xFF; \
|
||||
_a = ((_color) >> 24) & 0xFF; \
|
||||
_a = ((_color) >> 24) ^ 0xFF; \
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue