mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #2254 from lioncash/redundant
input_common/sdl_impl: Minor cleanup in SDLState constructor
This commit is contained in:
		
						commit
						e05136f70b
					
				@ -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);
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user