Fixed uninitialized variable in some cases

This commit is contained in:
Sam Lantinga 2014-07-27 17:43:36 -07:00
parent a261470598
commit 8d41429a9b

View file

@ -51,7 +51,7 @@ do { \
#define DRAW_SETPIXEL_BLEND(getpixel, setpixel) \
do { \
unsigned sr, sg, sb, sa; \
unsigned sr, sg, sb, sa = 0xFF; \
getpixel; \
sr = DRAW_MUL(inva, sr) + r; \
sg = DRAW_MUL(inva, sg) + g; \