summaryrefslogtreecommitdiff
path: root/Games/Snake/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-20 20:14:02 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-20 20:14:02 +0200
commita0633c298bddf7e7d6555a5d5c9c1dc62362c889 (patch)
tree248f71cc8af3e20213b7d2ce4c12006d0d1d8f3e /Games/Snake/main.cpp
parentca9a430965f81ac04c33af2c1d3f27b65a501569 (diff)
downloadserenity-a0633c298bddf7e7d6555a5d5c9c1dc62362c889.zip
Snake: Add a window icon. :^)
Diffstat (limited to 'Games/Snake/main.cpp')
-rw-r--r--Games/Snake/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Games/Snake/main.cpp b/Games/Snake/main.cpp
index cb61cd368e..59ffc6b413 100644
--- a/Games/Snake/main.cpp
+++ b/Games/Snake/main.cpp
@@ -44,7 +44,7 @@ int main(int argc, char** argv)
window->show();
- window->set_icon_path("/res/icons/minesweeper/mine.png");
+ window->set_icon_path("/res/icons/16x16/app-snake.png");
return app.exec();
}