lowered window size

This commit is contained in:
2026-03-09 14:35:49 +01:00
parent e97390986b
commit f09b52354b

View File

@@ -3,8 +3,8 @@
#include "../../libs/sdl3/include/SDL3/SDL.h" #include "../../libs/sdl3/include/SDL3/SDL.h"
struct WindowData { struct WindowData {
int width = 1920; int width = 1280;
int height = 1080; int height = 720;
const char *title = "Sakura Visual Novel Engine"; const char *title = "Sakura Visual Novel Engine";
}; };