summaryrefslogtreecommitdiff
path: root/Games/Snake/main.cpp
diff options
context:
space:
mode:
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 7cf72b64ff..1ae78b6bfa 100644
--- a/Games/Snake/main.cpp
+++ b/Games/Snake/main.cpp
@@ -13,7 +13,7 @@ int main(int argc, char** argv)
auto* window = new GWindow;
window->set_title("Snake");
- window->set_rect(100, 100, 300, 300);
+ window->set_rect(100, 100, 320, 320);
auto* game = new SnakeGame;
window->set_main_widget(game);