From b2c6f917e441c7eeadad3d6733134962cce81ab4 Mon Sep 17 00:00:00 2001 From: glixx Date: Fri, 24 May 2019 02:11:59 +0300 Subject: [PATCH] examples: Games: Pong: revert window size how it was before --- app/examples/Games/Pong/.src/MMain.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/examples/Games/Pong/.src/MMain.module b/app/examples/Games/Pong/.src/MMain.module index a9c4954df..486dcb4c3 100644 --- a/app/examples/Games/Pong/.src/MMain.module +++ b/app/examples/Games/Pong/.src/MMain.module @@ -28,7 +28,7 @@ Public Sub Main() Window.Caption = Subst$(("Pong v&1 - gb.ncurses Example"), Application.Version) Window.Clear() - $hConfig = New Window(True, 0, 0, 60, 5) + $hConfig = New Window(True, 0, 0, 30, 5) $hConfig.Border = Border.Ascii $hConfig.Center()