From f09b52354bfb47bfd6af274039f4264d843960e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Mon, 9 Mar 2026 14:35:49 +0100 Subject: [PATCH] lowered window size --- SakuraVNE/src/Application.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SakuraVNE/src/Application.h b/SakuraVNE/src/Application.h index a2f2370..3d817aa 100644 --- a/SakuraVNE/src/Application.h +++ b/SakuraVNE/src/Application.h @@ -3,8 +3,8 @@ #include "../../libs/sdl3/include/SDL3/SDL.h" struct WindowData { - int width = 1920; - int height = 1080; + int width = 1280; + int height = 720; const char *title = "Sakura Visual Novel Engine"; };