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