IPHONE: Remove erroneous write in OSystem_IPHONE::grabPalette.

Thanks to dhewg for reporting this!
This commit is contained in:
Johannes Schickel 2011-02-16 00:44:14 +01:00
parent 7d0f5c9f1c
commit c9a9f7b48f

View File

@ -114,7 +114,6 @@ void OSystem_IPHONE::grabPalette(byte *colors, uint start, uint num) {
for (uint i = start; i < start + num; ++i) {
Graphics::colorToRGB<Graphics::ColorMasks<565> >(_palette[i], b[0], b[1], b[2]);
b[3] = 0xFF;
b += 3;
}
}