We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6603901 commit 2e04741Copy full SHA for 2e04741
main.go
@@ -16,12 +16,13 @@ var (
16
// Available options
17
resolutions = []Resolution{
18
{1024, 768, false},
19
- {1280, 720, true},
20
{1440, 1080, false},
21
- {1920, 1080, true},
22
{1920, 1440, false},
23
- {2560, 1440, true},
24
{2880, 2160, false},
+
+ {1280, 720, true},
+ {1920, 1080, true},
25
+ {2560, 1440, true},
26
{3840, 2160, true},
27
}
28
@@ -43,7 +44,7 @@ var (
43
44
outputFormats = []string{"MP4", "AVI", "MKV"}
45
46
// Pointers for UI
- selectedResolution int32 = 2
47
+ selectedResolution int32 = 5
48
selectedShadersMode int32
49
selectedCompressionPreset int32 = 2
50
selectedOutputFormat int32
0 commit comments