1
0
mirror of https://github.com/marqs85/ossc.git synced 2026-04-21 20:17:26 +00:00

fix OSD size in certain modes

This commit is contained in:
marqs
2019-10-08 01:08:18 +03:00
parent ba4614a4f8
commit 3771d5cb14
3 changed files with 6395 additions and 6393 deletions
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -657,7 +657,7 @@ void program_mode()
osd_x_size = (video_modes[cm.id].v_active > 700) ? 1 : 0;
osd_y_size = osd_x_size;
} else {
osd_x_size = 1 - cm.tx_pixelrep;
osd_x_size = 1 - cm.tx_pixelrep + (cm.fpga_hmultmode == FPGA_H_MULTMODE_OPTIMIZED_1X);
osd_y_size = 0;
}
osd->osd_config.x_size = osd_x_size;