SDL: Replace some SdlGraphicsManager uses with SurfaceSdlGraphicsManager.

This commit is contained in:
Johannes Schickel 2011-06-19 20:20:13 +02:00
parent 1c21232416
commit 80b336f796
2 changed files with 4 additions and 4 deletions

View file

@ -492,11 +492,11 @@ bool DINGUXSdlGraphicsManager::getFeatureState(OSystem::Feature f) {
} }
} }
SdlGraphicsManager::MousePos* DINGUXSdlGraphicsManager::getMouseCurState() { SurfaceSdlGraphicsManager::MousePos *DINGUXSdlGraphicsManager::getMouseCurState() {
return &_mouseCurState; return &_mouseCurState;
} }
SdlGraphicsManager::VideoState* DINGUXSdlGraphicsManager::getVideoMode() { SurfaceSdlGraphicsManager::VideoState *DINGUXSdlGraphicsManager::getVideoMode() {
return &_videoMode; return &_videoMode;
} }

View file

@ -561,11 +561,11 @@ bool GPHGraphicsManager::getFeatureState(OSystem::Feature f) {
} }
} }
SdlGraphicsManager::MousePos* GPHGraphicsManager::getMouseCurState() { SurfaceSdlGraphicsManager::MousePos *GPHGraphicsManager::getMouseCurState() {
return &_mouseCurState; return &_mouseCurState;
} }
SdlGraphicsManager::VideoState* GPHGraphicsManager::getVideoMode() { SurfaceSdlGraphicsManager::VideoState *GPHGraphicsManager::getVideoMode() {
return &_videoMode; return &_videoMode;
} }