diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-04 22:01:26 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-04 23:40:21 +0100 |
commit | 5c4bb039266242ee606aceabba5926831de46e83 (patch) | |
tree | 3c01fb59c48fb5f9fb2f02c2facaf4552a034ca9 /Userland/Games/GameOfLife | |
parent | fd57ecfdcf4a89a676ae6f692402c061e63a32ea (diff) | |
download | serenity-5c4bb039266242ee606aceabba5926831de46e83.zip |
LibGfx+GameOfLife: Remove Gfx::make_rgb() and its one user
Diffstat (limited to 'Userland/Games/GameOfLife')
-rw-r--r-- | Userland/Games/GameOfLife/BoardWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/GameOfLife/BoardWidget.cpp b/Userland/Games/GameOfLife/BoardWidget.cpp index 09000b4aa1..6daffc5390 100644 --- a/Userland/Games/GameOfLife/BoardWidget.cpp +++ b/Userland/Games/GameOfLife/BoardWidget.cpp @@ -139,7 +139,7 @@ void BoardWidget::paint_event(GUI::PaintEvent& event) bool on = m_board->cell(row, column); if (on) { - fill_color = Color::from_rgb(Gfx::make_rgb(220, 220, 80)); + fill_color = Color::from_rgb(0xdcdc50); } else { fill_color = Color::MidGray; } |