From 999aedd8d42817ccd04fe20250b0602caa997f61 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Tue, 14 May 2024 15:08:17 +0100 Subject: [PATCH] Change resolution from 1080x600 -> 1920x1080 (Oh god, what am I doing...) --- game/scripts/gui/_gui_.rpy | 2 +- game/scripts/options.rpy | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/game/scripts/gui/_gui_.rpy b/game/scripts/gui/_gui_.rpy index fca11efb..04588e02 100644 --- a/game/scripts/gui/_gui_.rpy +++ b/game/scripts/gui/_gui_.rpy @@ -8,7 +8,7 @@ init python in gui: import store from store import settings - init(1280, 720) + init(1920, 1080) def is_dark(): theme = settings.get("theme") diff --git a/game/scripts/options.rpy b/game/scripts/options.rpy index 6b5cd19e..614ff31e 100644 --- a/game/scripts/options.rpy +++ b/game/scripts/options.rpy @@ -44,8 +44,8 @@ define config.name = "Witch Trainer Silver" # Application window settings define config.window_title = f"{config.name} (v{config.version}{' PRE-RELEASE' if prerelease else ''}) ({get_renderer()}) ({renpy.bits}-bit)" define config.window_icon = "gui/icon.webp" -define config.screen_width = 1080 -define config.screen_height = 600 +define config.screen_width = 1920 +define config.screen_height = 1080 define config.physical_width = 1280 define config.physical_height = 720 define config.save_physical_size = True