Fix missing colorTriple increment when creating the color table in GreGetDIBitsInternal.

svn path=/trunk/; revision=57510
This commit is contained in:
Timo Kreuzer 2012-10-07 10:03:31 +00:00
parent 35de366b5b
commit 4bebb78d5e

View file

@ -815,6 +815,7 @@ GreGetDIBitsInternal(
colorTriple->rgbtRed = (r * 0xff) / 5;
colorTriple->rgbtGreen = (g * 0xff) / 5;
colorTriple->rgbtBlue = (b * 0xff) / 5;
colorTriple++;
}
}
}