Swap safe area and full resolution options to keep ascending order

This commit is contained in:
Cameron Gutman
2023-09-29 01:08:18 -05:00
parent f8a76e4584
commit a342c294a1
3 changed files with 4 additions and 4 deletions

View File

@@ -156,8 +156,8 @@ BOOL isCustomResolution(CGSize res) {
resolutionTable[1] = CGSizeMake(1280, 720);
resolutionTable[2] = CGSizeMake(1920, 1080);
resolutionTable[3] = CGSizeMake(3840, 2160);
resolutionTable[4] = CGSizeMake(fullScreenWidth, fullScreenHeight);
resolutionTable[5] = CGSizeMake(safeAreaWidth, fullScreenHeight);
resolutionTable[4] = CGSizeMake(safeAreaWidth, fullScreenHeight);
resolutionTable[5] = CGSizeMake(fullScreenWidth, fullScreenHeight);
resolutionTable[6] = CGSizeMake([currentSettings.width integerValue], [currentSettings.height integerValue]); // custom initial value
// Don't populate the custom entry unless we have a custom resolution

View File

@@ -78,8 +78,8 @@
<segment title="720p"/>
<segment title="1080p"/>
<segment title="4K"/>
<segment title="Full"/>
<segment title="Safe Area"/>
<segment title="Full"/>
<segment title="Custom"/>
</segments>
<color key="tintColor" red="0.6716768741607666" green="0.61711704730987549" blue="0.99902987480163574" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>

View File

@@ -101,8 +101,8 @@
<segment title="720p"/>
<segment title="1080p"/>
<segment title="4K"/>
<segment title="Full"/>
<segment title="Safe Area"/>
<segment title="Full"/>
<segment title="Custom"/>
</segments>
<color key="tintColor" red="0.6716768741607666" green="0.61711704730987549" blue="0.99902987480163574" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>