mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
3:2 aspect fix
This commit is contained in:
parent
63d95cee97
commit
b8a7339b98
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) \
|
||||
|
|
|
|||
Loading…
Reference in a new issue