diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fl_draw_image_win32.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fl_draw_image_win32.cxx b/src/fl_draw_image_win32.cxx index 6d5b8600f..d9e596351 100644 --- a/src/fl_draw_image_win32.cxx +++ b/src/fl_draw_image_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_draw_image_win32.cxx,v 1.4.2.3.2.3 2002/11/19 16:37:36 easysw Exp $" +// "$Id: fl_draw_image_win32.cxx,v 1.4.2.3.2.4 2002/11/20 20:55:24 easysw Exp $" // // WIN32 image drawing code for the Fast Light Tool Kit (FLTK). // @@ -144,10 +144,10 @@ static void innards(const uchar *buf, int X, int Y, int W, int H, #endif if (mono) { for (int i=0; i<256; i++) { - bmi.bmiColors[i].rgbBlue = (uchar)(i; - bmi.bmiColors[i].rgbGreen = (uchar)(i; - bmi.bmiColors[i].rgbRed = (uchar)(i; - bmi.bmiColors[i].rgbReserved = (uchar)(i; + bmi.bmiColors[i].rgbBlue = (uchar)i; + bmi.bmiColors[i].rgbGreen = (uchar)i; + bmi.bmiColors[i].rgbRed = (uchar)i; + bmi.bmiColors[i].rgbReserved = (uchar)i; } } bmi.bmiHeader.biWidth = w; @@ -258,5 +258,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) { } // -// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.3.2.3 2002/11/19 16:37:36 easysw Exp $". +// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.3.2.4 2002/11/20 20:55:24 easysw Exp $". // |
