Merge pull request #2254 from lioncash/redundant

input_common/sdl_impl: Minor cleanup in SDLState constructor
This commit is contained in:
bunnei 2019-03-18 11:13:20 -04:00 committed by GitHub
commit e05136f70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -475,12 +475,11 @@ SDLState::SDLState() {
initialized = true;
if (start_thread) {
poll_thread = std::thread([&] {
poll_thread = std::thread([this] {
using namespace std::chrono_literals;
SDL_Event event;
while (initialized) {
SDL_PumpEvents();
std::this_thread::sleep_for(std::chrono::duration(10ms));
std::this_thread::sleep_for(10ms);
}
});
}