Fix green screen sometimes when capturing amd/intel window

This commit is contained in:
dec05eba
2023-07-18 06:00:36 +02:00
parent d879ccf0fe
commit a3beaeb0cc
6 changed files with 27 additions and 22 deletions

View File

@@ -271,3 +271,7 @@ bool gsr_get_valid_card_path(char *output) {
}
return false;
}
int even_number_ceil(int value) {
return value + (value & 1);
}