diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-02-12 17:00:20 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-02-12 17:00:20 +0100 |
commit | e98164ec41c3629c592bb31d8b110d85626c5e3c (patch) | |
tree | f4e345af3889cbec4d2a9239b6570ee21ee1e9f4 /src/render/Draw.h | |
parent | Update TXDs (diff) | |
download | re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar.gz re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar.bz2 re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar.lz re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar.xz re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.tar.zst re3-e98164ec41c3629c592bb31d8b110d85626c5e3c.zip |
Diffstat (limited to 'src/render/Draw.h')
-rw-r--r-- | src/render/Draw.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/render/Draw.h b/src/render/Draw.h index e67ab42b..b96fa813 100644 --- a/src/render/Draw.h +++ b/src/render/Draw.h @@ -4,10 +4,14 @@ enum eAspectRatio { // Make sure these work the same as FrontEndMenuManager.m_PrefsUseWideScreen // without widescreen support + AR_AUTO, AR_4_3, + AR_5_4, + AR_16_10, AR_16_9, + AR_21_9, - AR_AUTO, + AR_MAX, }; class CDraw |