Skip to content

Commit

Permalink
Reorder display_mode_remapping
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog committed Apr 9, 2024
1 parent baeaa26 commit f81cb4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,10 @@ namespace config {
(int) display_device::parsed_config_t::device_prep_e::no_operation, // display_device_prep
(int) display_device::parsed_config_t::resolution_change_e::automatic, // resolution_change
{}, // manual_resolution
{}, // display_mode_remapping
(int) display_device::parsed_config_t::refresh_rate_change_e::automatic, // refresh_rate_change
{}, // manual_refresh_rate
(int) display_device::parsed_config_t::hdr_prep_e::automatic // hdr_prep
(int) display_device::parsed_config_t::hdr_prep_e::automatic, // hdr_prep
{} // display_mode_remapping
};

audio_t audio {
Expand Down
2 changes: 1 addition & 1 deletion src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ namespace config {
int display_device_prep;
int resolution_change;
std::string manual_resolution;
std::vector<display_mode_remapping_t> display_mode_remapping;
int refresh_rate_change;
std::string manual_refresh_rate;
int hdr_prep;
std::vector<display_mode_remapping_t> display_mode_remapping;
};

struct audio_t {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -1278,10 +1278,10 @@ <h2 class="accordion-header">
"display_device_prep": "no_operation",
"resolution_change": "automatic",
"manual_resolution": "",
"display_mode_remapping": "[]",
"refresh_rate_change": "automatic",
"manual_refresh_rate": "",
"hdr_prep": "automatic",
"display_mode_remapping": "[]",
"resolutions": "[352x240,480x360,858x480,1280x720,1920x1080,2560x1080,2560x1440,3440x1440,1920x1200,3840x2160,3840x1600]",
"fps": "[10,30,60,90,120]",
},
Expand Down

0 comments on commit f81cb4a

Please sign in to comment.