kopia lustrzana https://github.com/hoglet67/RGBtoHDMI
Fix issue with screen captures when OSD enabled
rodzic
61e656a0ae
commit
eb984b7f0c
|
@ -605,11 +605,20 @@ void geometry_get_fb_params(capture_info_t *capinfo) {
|
||||||
if (mode7) {
|
if (mode7) {
|
||||||
capvscale >>= 1;
|
capvscale >>= 1;
|
||||||
} else {
|
} else {
|
||||||
if (double_width) {
|
if (osd_active()) {
|
||||||
caphscale |= 0x80000000;
|
if (double_width) {
|
||||||
}
|
caphscale >>= 1;
|
||||||
if (double_height) {
|
}
|
||||||
capvscale |= 0x80000000;
|
if (double_height) {
|
||||||
|
capvscale >>= 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (double_width) {
|
||||||
|
caphscale |= 0x80000000;
|
||||||
|
}
|
||||||
|
if (double_height) {
|
||||||
|
capvscale |= 0x80000000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue