summaryrefslogtreecommitdiff
path: root/Userland/Games/Snake
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/Snake')
-rw-r--r--Userland/Games/Snake/SnakeGame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Snake/SnakeGame.cpp b/Userland/Games/Snake/SnakeGame.cpp
index c8d8e423fb..5a63aa5e37 100644
--- a/Userland/Games/Snake/SnakeGame.cpp
+++ b/Userland/Games/Snake/SnakeGame.cpp
@@ -15,7 +15,7 @@
SnakeGame::SnakeGame()
{
- set_font(Gfx::FontDatabase::default_bold_fixed_width_font());
+ set_font(Gfx::FontDatabase::default_fixed_width_font().bold_variant());
m_fruit_bitmaps.append(*Gfx::Bitmap::load_from_file("/res/icons/snake/paprika.png"));
m_fruit_bitmaps.append(*Gfx::Bitmap::load_from_file("/res/icons/snake/eggplant.png"));
m_fruit_bitmaps.append(*Gfx::Bitmap::load_from_file("/res/icons/snake/cauliflower.png"));