File diff r25010:cc3b6b985580 → r25011:61d28a13bb41
src/video/video_driver.cpp
Show inline comments
 
@@ -19,7 +19,7 @@
 

	
 
bool _video_hw_accel; ///< Whether to consider hardware accelerated video drivers.
 

	
 
bool VideoDriver::Tick()
 
void VideoDriver::Tick()
 
{
 
	auto cur_ticks = std::chrono::steady_clock::now();
 

	
 
@@ -66,12 +66,10 @@ bool VideoDriver::Tick()
 

	
 
		::InputLoop();
 
		UpdateWindows();
 

	
 
		this->CheckPaletteAnim();
 

	
 
		return true;
 
		this->Paint();
 
	}
 

	
 
	return false;
 
}
 

	
 
void VideoDriver::SleepTillNextTick()