summaryrefslogtreecommitdiff
path: root/Userland/Games
diff options
context:
space:
mode:
authorCubic Love <7754483+cubiclove@users.noreply.github.com>2023-05-05 01:18:46 +0100
committerSam Atkins <atkinssj@gmail.com>2023-05-05 11:52:33 +0100
commit248542535d10d9b7102580435e7035e35a26e1d9 (patch)
tree988c91b67f87206bb433a5de918571b344a9e665 /Userland/Games
parent240a56d9ce957c475598dd3b0df6a196a8dd8298 (diff)
downloadserenity-248542535d10d9b7102580435e7035e35a26e1d9.zip
Base+LibChess: Move assets from /icons/ to /graphics/
The graphics directory is a more suitable home for game assets.
Diffstat (limited to 'Userland/Games')
-rw-r--r--Userland/Games/Chess/ChessWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Chess/ChessWidget.cpp b/Userland/Games/Chess/ChessWidget.cpp
index e93c9ed01b..3438a27545 100644
--- a/Userland/Games/Chess/ChessWidget.cpp
+++ b/Userland/Games/Chess/ChessWidget.cpp
@@ -342,7 +342,7 @@ void ChessWidget::keydown_event(GUI::KeyEvent& event)
update();
}
-static constexpr StringView set_path = "/res/icons/chess/sets/"sv;
+static constexpr StringView set_path = "/res/graphics/chess/sets/"sv;
static RefPtr<Gfx::Bitmap> get_piece(StringView set, StringView image)
{