From 50949b5eb43546d97e9ace99ffb8a9d19393cbaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Wed, 13 May 2020 18:38:06 +0200 Subject: [PATCH] resizing the window --- sources/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/main.cpp b/sources/main.cpp index 0095428..99bbc08 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -76,7 +76,7 @@ int main(int argc, char **argv) } QApplication app(argc, argv); QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton); - Renderer::QtSFML renderer(1080, 1920); + Renderer::QtSFML renderer(1100, 1100); try { SNES snes(argv[1], renderer); renderer.createWindow(snes, 60);