diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/checkers.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/checkers.cxx b/test/checkers.cxx index a35e3eb1f..3667cb045 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1,5 +1,5 @@ // -// "$Id: checkers.cxx,v 1.5 1998/10/21 14:21:18 mike Exp $" +// "$Id: checkers.cxx,v 1.6 1998/12/02 16:04:03 mike Exp $" // // Checkers game for the Fast Light Tool Kit (FLTK). // @@ -921,10 +921,10 @@ void draw_piece(int which, int x, int y) { case WHITEKING: which = 3; break; default: return; } - fl_color(FL_BLACK); bm[which][0]->draw(x, y); - fl_color(FL_INACTIVE_COLOR); bm[which][1]->draw(x, y); - fl_color(FL_SELECTION_COLOR);bm[which][2]->draw(x, y); - fl_color(FL_WHITE); bm[which][3]->draw(x, y); + 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, 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.5 1998/10/21 14:21:18 mike Exp $". +// End of "$Id: checkers.cxx,v 1.6 1998/12/02 16:04:03 mike Exp $". // |
