- Removed a few new warnings spewed by GCC.

SVN r641 (trunk)
This commit is contained in:
Randy Heit 2007-12-26 05:03:14 +00:00
commit 813b59edee
6 changed files with 13 additions and 18 deletions

View file

@ -389,6 +389,10 @@ int FJPEGTexture::CopyTrueColorPixels(BYTE * buffer, int buf_width, int buf_heig
screen->CopyPixelDataRGB(buffer, buf_width, buf_height, x, y, buff, cinfo.output_width, cinfo.output_height,
4, cinfo.output_width * cinfo.output_components, CF_CMYK);
break;
default:
assert(0);
break;
}
jpeg_finish_decompress(&cinfo);
}