3:2 aspect fix

This commit is contained in:
Issac332 2026-07-05 17:35:21 +03:00
parent 63d95cee97
commit b8a7339b98
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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) \