File diff r23481:c661a608c11a → r23482:de566f8c088d
src/video/allegro_v.cpp
Show inline comments
 
@@ -440,12 +440,6 @@ const char *VideoDriver_Allegro::Start(c
 
	signal(SIGSEGV, NULL);
 
#endif
 

	
 
#if defined(DOS)
 
	/* Force DOS builds to ALWAYS use full screen as
 
	 * it can't do windowed. */
 
	_fullscreen = true;
 
#endif
 

	
 
	GetVideoModes();
 
	if (!CreateMainSurface(_cur_resolution.width, _cur_resolution.height)) {
 
		return "Failed to set up Allegro video";
 
@@ -461,7 +455,7 @@ void VideoDriver_Allegro::Stop()
 
	if (--_allegro_instance_count == 0) allegro_exit();
 
}
 

	
 
#if defined(UNIX) || defined(__OS2__) || defined(DOS)
 
#if defined(UNIX) || defined(__OS2__)
 
# include <sys/time.h> /* gettimeofday */
 

	
 
static uint32 GetTime()
 
@@ -548,9 +542,6 @@ bool VideoDriver_Allegro::ChangeResoluti
 

	
 
bool VideoDriver_Allegro::ToggleFullscreen(bool fullscreen)
 
{
 
#ifdef DOS
 
	return false;
 
#else
 
	_fullscreen = fullscreen;
 
	GetVideoModes(); // get the list of available video modes
 
	if (_num_resolutions == 0 || !this->ChangeResolution(_cur_resolution.width, _cur_resolution.height)) {
 
@@ -559,7 +550,6 @@ bool VideoDriver_Allegro::ToggleFullscre
 
		return false;
 
	}
 
	return true;
 
#endif
 
}
 

	
 
bool VideoDriver_Allegro::AfterBlitterChange()