diff options
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/agos/vga_e2.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agos/vga_e2.cpp b/engines/agos/vga_e2.cpp index 1bbc7f4849..54ec45b967 100644 --- a/engines/agos/vga_e2.cpp +++ b/engines/agos/vga_e2.cpp @@ -265,7 +265,7 @@ void AGOSEngine::vc53_dissolveIn() {  		*dst &= color;  		*dst |= *src & 0xF; -		 _system->unlockScreen(); +		_system->unlockScreen();  		dissolveCount--;  		if (!dissolveCount) { @@ -319,7 +319,7 @@ void AGOSEngine::vc54_dissolveOut() {  		dst += xoffs;  		*dst = color; -		 _system->unlockScreen(); +		_system->unlockScreen();  		dissolveCount--;  		if (!dissolveCount) { @@ -388,7 +388,7 @@ void AGOSEngine::vc56_fullScreen() {  		src += 320;  		dst += screen->pitch;  	} -	 _system->unlockScreen(); +	_system->unlockScreen();  	fullFade();  }  | 
