From b8a7339b98f96d7785417e168db4d2835a8f6198 Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Sun, 5 Jul 2026 17:35:21 +0300 Subject: [PATCH] 3:2 aspect fix --- oneshot.conf | 2 +- src/config.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/oneshot.conf b/oneshot.conf index 276d4a6..1aa1c89 100644 --- a/oneshot.conf +++ b/oneshot.conf @@ -30,7 +30,7 @@ fixedAspectRatio=true # (ratio and resolution are not acceptable values) # Where X - not recommended, the correctness of # the game is not guaranteed. -# 0 - 2:3 - 640x960 +# 0 - 3:2 - 720:480 # 1 - 4:3 - 640x480 (default) # 2 - 16:9 - 960x540 # 3 - 16:10 - 960x600 diff --git a/src/config.h b/src/config.h index 23b5e7e..df7d244 100644 --- a/src/config.h +++ b/src/config.h @@ -98,7 +98,7 @@ struct Config{ void read(int argc, char *argv[]); }; -// 0 - 2:3 - 640x960 +// 0 - 3:2 - 720:480 // 1 - 4:3 - 640x480 (default) // 2 - 16:9 - 960x540 // 3 - 16:10 - 960x600 @@ -107,7 +107,7 @@ struct Config{ // Value X Y Ruby const #define RESOLUTIONS_LIST(X) \ - X(0, 640, 960, _2_3) \ + X(0, 720, 480, _3_2) \ X(1, 640, 480, _4_3) \ X(2, 960, 540, _16_9) \ X(3, 960, 600, _16_10) \