summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-11-20 20:55:24 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-11-20 20:55:24 +0000
commitf0b0e4c00aa5ec7e3aff361dde6f5a695811237d (patch)
treebc91c03feea0378920ed57c112f81ca4ae6ce7d4 /src
parent2670b415890fe26331b72c90bdaed28bb25223a4 (diff)
Fix type in WIN32 source...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2853 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_draw_image_win32.cxx12
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 $".
//