diff options
| author | Sven Hesse | 2011-02-02 16:48:04 +0000 | 
|---|---|---|
| committer | Sven Hesse | 2011-02-02 16:48:04 +0000 | 
| commit | 076b9c9e534a1c83969a44d6893e56deffb4b6c1 (patch) | |
| tree | 7e9fdca9f6e38c18f9fe0de2e2e5a267b48838dc /engines/gob/draw_v2.cpp | |
| parent | e6f2f7e615ded18db50b878ac6cbe27b318d0218 (diff) | |
| download | scummvm-rg350-076b9c9e534a1c83969a44d6893e56deffb4b6c1.tar.gz scummvm-rg350-076b9c9e534a1c83969a44d6893e56deffb4b6c1.tar.bz2 scummvm-rg350-076b9c9e534a1c83969a44d6893e56deffb4b6c1.zip | |
GOB: Remove the vidMode parameter from Video::initSurfDesc
svn-id: r55727
Diffstat (limited to 'engines/gob/draw_v2.cpp')
| -rw-r--r-- | engines/gob/draw_v2.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/engines/gob/draw_v2.cpp b/engines/gob/draw_v2.cpp index 5eb6780468..15a8f7ff8e 100644 --- a/engines/gob/draw_v2.cpp +++ b/engines/gob/draw_v2.cpp @@ -59,8 +59,7 @@ void Draw_v2::initScreen() {  		initSpriteSurf(kCursorSurface, 32, 16, 2);  		_cursorSpritesBack = _spritesArray[kCursorSurface];  		_cursorSprites = _cursorSpritesBack; -		_scummvmCursor = -			_vm->_video->initSurfDesc(_vm->_global->_videoMode, 16, 16, SCUMMVM_CURSOR); +		_scummvmCursor = _vm->_video->initSurfDesc(16, 16, SCUMMVM_CURSOR);  	}  	_spritesArray[kFrontSurface] = _frontSurface; | 
