Configure_Graphics: Add Docked Resolutions and Correct Possible bug with Auto.

This commit is contained in:
Fernando Sahmkow
2019-07-09 17:57:18 -04:00
committed by FernandoS27
parent a7bceb8a2f
commit 8db18e8fae
2 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ enum class Resolution : int {
float ToResolutionFactor(Resolution option) {
switch (option) {
case Resolution::Auto:
return 0.f;
return 1.f;
case Resolution::Scale1x:
return 1.f;
case Resolution::Scale2x:

View File

@@ -75,22 +75,22 @@
</item>
<item>
<property name="text">
<string>Native (1280x720)</string>
<string>Native (1280x720/1920x1080)</string>
</property>
</item>
<item>
<property name="text">
<string>2x Native (2560x1440)</string>
<string>2x Native (2560x1440/3840x2160)</string>
</property>
</item>
<item>
<property name="text">
<string>3x Native (3840x2160)</string>
<string>3x Native (3840x2160/5760x3240)</string>
</property>
</item>
<item>
<property name="text">
<string>4x Native (5120x2880)</string>
<string>4x Native (5120x2880/7680x4320)</string>
</property>
</item>
</widget>