Revert colors in mines example

This commit is contained in:
Alexandre Bury 2018-03-14 15:48:08 -07:00
parent 8d9d17d372
commit 8ecd4fdb62

View File

@ -208,7 +208,7 @@ impl cursive::view::View for BoardView {
};
printer.with_color(
ColorStyle::new(color, Color::Dark(BaseColor::Black)),
ColorStyle::new(Color::Dark(BaseColor::Black), color),
|printer| printer.print((x, y), text),
);
}