diff options
Diffstat (limited to 'plugingui/testmain.cc')
-rw-r--r-- | plugingui/testmain.cc | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/plugingui/testmain.cc b/plugingui/testmain.cc index d6c3220..5231205 100644 --- a/plugingui/testmain.cc +++ b/plugingui/testmain.cc @@ -24,13 +24,8 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <platform.h> - -#if DG_PLATFORM == DG_PLATFORM_WINDOWS -#define WIN32_LEAN_AND_MEAN -#include <windows.h> -#endif -#include <unistd.h> +#include <chrono> +#include <thread> #include <hugin.hpp> #include <settings.h> @@ -63,11 +58,7 @@ int main() break; } -#if DG_PLATFORM == DG_PLATFORM_WINDOWS - SleepEx(50, FALSE); -#else - usleep(50000); -#endif + std::this_thread::sleep_for(std::chrono::milliseconds(50)); } return 0; |