Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gbs-control.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4023,7 +4023,7 @@ void applyPresets(uint8_t result) {
}
}

if (result == 1 || result == 3 || result == 8 || result == 9 || result == 14) {
if (result == 1 || result == 8 || result == 9 || result == 14) {
if (uopt->presetPreference == 0) {
writeProgramArrayNew(ntsc_240p, false);
}
Expand Down Expand Up @@ -4055,7 +4055,7 @@ void applyPresets(uint8_t result) {
writeProgramArrayNew(ntsc_downscale, false);
}
}
else if (result == 2 || result == 4) {
else if (result == 2) {
if (uopt->presetPreference == 0) {
if (uopt->matchPresetSource) {
SerialM.println(F("matched preset override > 1280x1024"));
Expand Down Expand Up @@ -4087,7 +4087,7 @@ void applyPresets(uint8_t result) {
writeProgramArrayNew(pal_downscale, false);
}
}
else if (result == 5 || result == 6 || result == 7 || result == 13) {
else if (result == 3 || result == 4 || result == 5 || result == 6 || result == 7 || result == 13) {
// use bypass mode for these HD sources
rto->videoStandardInput = result;
setOutModeHdBypass();
Expand Down