diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-02 17:35:59 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-02 17:35:59 +0000 |
| commit | fade037edb9f560b124fbb2a3a2e36ad616a3eb9 (patch) | |
| tree | 866b5b92b279e4eabd292d71694a2bce607b07b2 | |
| parent | 5fe9ef7d19f1c928ee31062686e0b4d6fa194921 (diff) | |
Fixed color - 2000 instead of 200.
git-svn-id: file:///fltk/svn/fltk/trunk@119 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | test/checkers.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/checkers.cxx b/test/checkers.cxx index 3667cb045..c4355099c 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1,5 +1,5 @@ // -// "$Id: checkers.cxx,v 1.6 1998/12/02 16:04:03 mike Exp $" +// "$Id: checkers.cxx,v 1.7 1998/12/02 17:35:59 mike Exp $" // // Checkers game for the Fast Light Tool Kit (FLTK). // @@ -922,8 +922,8 @@ void draw_piece(int which, int x, int y) { default: return; } fl_color(0, 1, 0); bm[which][0]->draw(x, y); - fl_color(200, 100, 2000); bm[which][1]->draw(x, y); - fl_color(100, 100, 200);bm[which][2]->draw(x, y); + fl_color(200, 100, 200); bm[which][1]->draw(x, y); + fl_color(100, 100, 200); bm[which][2]->draw(x, y); fl_color(200, 200, 100); bm[which][3]->draw(x, y); } @@ -1366,5 +1366,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: checkers.cxx,v 1.6 1998/12/02 16:04:03 mike Exp $". +// End of "$Id: checkers.cxx,v 1.7 1998/12/02 17:35:59 mike Exp $". // |
