File diff r22567:c7f225c92a0b → r22568:df7ef8916103
src/video/win32_v.cpp
Show inline comments
 
@@ -1334,10 +1334,17 @@ bool VideoDriver_Win32::ToggleFullscreen
 

	
 
bool VideoDriver_Win32::AfterBlitterChange()
 
{
 
	return AllocateDibSection(_screen.width, _screen.height, true) && this->MakeWindow(_fullscreen);
 
}
 

	
 
void VideoDriver_Win32::AcquireBlitterLock()
 
{
 
	if (_draw_mutex != NULL) _draw_mutex->BeginCritical(true);
 
	bool ret = AllocateDibSection(_screen.width, _screen.height, true) && this->MakeWindow(_fullscreen);
 
}
 

	
 
void VideoDriver_Win32::ReleaseBlitterLock()
 
{
 
	if (_draw_mutex != NULL) _draw_mutex->EndCritical(true);
 
	return ret;
 
}
 

	
 
void VideoDriver_Win32::EditBoxLostFocus()