mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 11:06:39 -04:00
ChangeLog: https://github.com/RetroPie/EmulationStation/compare/v2.9.4...master PR: 251474 Submitted by: freebsd@coombscloud.com (maintainer)
21 lines
447 B
C++
21 lines
447 B
C++
--- es-app/src/ScraperCmdLine.cpp.orig 2020-11-29 11:43:15 UTC
|
|
+++ es-app/src/ScraperCmdLine.cpp
|
|
@@ -5,17 +5,13 @@
|
|
#include "SystemData.h"
|
|
#include <iostream>
|
|
#include <signal.h>
|
|
-#if defined(__linux__)
|
|
#include <unistd.h>
|
|
-#elif defined(WIN32)
|
|
-#include <Windows.h>
|
|
-#endif
|
|
|
|
std::ostream& out = std::cout;
|
|
|
|
void handle_interrupt_signal(int /*p*/)
|
|
{
|
|
- sleep(50);
|
|
+ usleep(50);
|
|
|
|
LOG(LogInfo) << "Interrupt received during scrape...";
|
|
|