bugfix for bottom when setting quad

This commit is contained in:
Erik Frojdh
2021-03-09 08:00:21 +01:00
parent 14cd8c5d4a
commit 39926497b2

View File

@ -1395,7 +1395,7 @@ int Feb_Control_SetMaster(enum MASTERINDEX ind) {
int Feb_Control_SetQuad(int val) { int Feb_Control_SetQuad(int val) {
LOG(logINFO, ("Setting Quad to %d in Feb\n", val)); LOG(logINFO, ("Setting Quad to %d in Feb\n", val));
// only setting on the right feb if quad // only setting on the right feb if quad
return Feb_Control_SetTop(val == 0 ? TOP_HARDWARE : OW_TOP, 0, 1); return Feb_Control_SetTop(val == 0 ? TOP_HARDWARE : OW_BOTTOM, 0, 1);
} }
int Feb_Control_SetReadNLines(int value) { int Feb_Control_SetReadNLines(int value) {