mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-07 07:16:23 +09:00
Allow starting/stopping replay manually when using 'start replay at game launch' option, handle enobufs in game tracker, stop replay when unplugging power supply if that option is enabled
This commit is contained in:
@@ -245,6 +245,7 @@ int main(void) {
|
||||
ssize_t n = recv(sock, recv_buf, sizeof(recv_buf), 0);
|
||||
if (n < 0) {
|
||||
if (errno == EINTR) continue;
|
||||
if (errno == ENOBUFS) { scan_existing_processes(); continue; }
|
||||
perror("recv");
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user