[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:
Benoît Minisini 2009-12-29 18:19:33 +00:00
parent 71af715f2a
commit d752c36ade

View file

@ -112,7 +112,7 @@ typedef
_b = (_color) & 0xFF; \
_g = ((_color) >> 8) & 0xFF; \
_r = ((_color) >> 16) & 0xFF; \
_a = ((_color) >> 24) & 0xFF; \
_a = ((_color) >> 24) ^ 0xFF; \
}