From 9d4c459295dcae2ba13f839271baa0c8b7908e6d Mon Sep 17 00:00:00 2001 From: Era Dorta Date: Sun, 11 Jun 2023 18:15:53 +0000 Subject: [PATCH] fix(chrono): remove libboost chrono include --- src/input.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input.cpp b/src/input.cpp index a9a38e2d91c..b041241e46d 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -10,6 +10,7 @@ extern "C" { } #include +#include #include #include "config.h" @@ -19,7 +20,6 @@ extern "C" { #include "thread_pool.h" #include "utility.h" -#include #include using namespace std::literals; @@ -738,7 +738,7 @@ namespace input { platf::gamepad(platf_input, gamepad.id, state); // Sleep for a short time to allow the input to be detected - boost::this_thread::sleep_for(boost::chrono::milliseconds(100)); + boost::this_thread::sleep_for(std::chrono::milliseconds(100)); // Release Home button state.buttonFlags &= ~platf::HOME;