diff options
| author | Paul Gilbert | 2014-03-01 17:28:24 -0500 | 
|---|---|---|
| committer | Paul Gilbert | 2014-03-01 17:28:24 -0500 | 
| commit | 7880ae0b18c3e2a25ed1c4a2bc42e22066d1ff3e (patch) | |
| tree | 96de4f3470bd9bcc81bbae82a3e1c59f523a8edf /backends/graphics/opengl | |
| parent | badb8d97444767b7d8fea0f877ac044249696a5f (diff) | |
| parent | 2218d14fb5276724c757406d5ac1ec581160721b (diff) | |
| download | scummvm-rg350-7880ae0b18c3e2a25ed1c4a2bc42e22066d1ff3e.tar.gz scummvm-rg350-7880ae0b18c3e2a25ed1c4a2bc42e22066d1ff3e.tar.bz2 scummvm-rg350-7880ae0b18c3e2a25ed1c4a2bc42e22066d1ff3e.zip  | |
Merge branch 'master' into mads
Diffstat (limited to 'backends/graphics/opengl')
| -rw-r--r-- | backends/graphics/opengl/opengl-graphics.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.cpp b/backends/graphics/opengl/opengl-graphics.cpp index 0a034128fe..cbd06e9161 100644 --- a/backends/graphics/opengl/opengl-graphics.cpp +++ b/backends/graphics/opengl/opengl-graphics.cpp @@ -278,11 +278,15 @@ OSystem::TransactionError OpenGLGraphicsManager::endGFXTransaction() {  		_gameScreen->allocate(_currentState.gameWidth, _currentState.gameHeight);  		_gameScreen->enableLinearFiltering(_currentState.graphicsMode == GFX_LINEAR);  		// We fill the screen to all black or index 0 for CLUT8. +#ifdef USE_RGB_COLOR  		if (_currentState.gameFormat.bytesPerPixel == 1) {  			_gameScreen->fill(0);  		} else {  			_gameScreen->fill(_gameScreen->getSurface()->format.RGBToColor(0, 0, 0));  		} +#else +		_gameScreen->fill(0); +#endif  	}  	// Update our display area and cursor scaling. This makes sure we pick up  | 
