aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp
diff options
context:
space:
mode:
authorMax Horn2010-11-28 22:04:39 +0000
committerMax Horn2010-11-28 22:04:39 +0000
commita162ff18bc88b7ad364576ae091f0becba9117e2 (patch)
tree296771d022944e6ff883c4f202f124f28af53a76 /backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp
parent5a825eaae249d1a92f6252ce340d5801d84e15ca (diff)
downloadscummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.tar.gz
scummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.tar.bz2
scummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.zip
SDL: Various more SdlEventSource related fixes
svn-id: r54553
Diffstat (limited to 'backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp')
-rw-r--r--backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp b/backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp
index 1b8881d5ad..fe8c742ed9 100644
--- a/backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp
+++ b/backends/graphics/dinguxsdl/dinguxsdl-graphics.cpp
@@ -38,8 +38,8 @@ static const OSystem::GraphicsMode s_supportedGraphicsModes[] = {
{0, 0, 0}
};
-DINGUXSdlGraphicsManager::DINGUXSdlGraphicsManager(SdlEventSource *boss) : SdlGraphicsManager(boss) {
- _evSrc = boss;
+DINGUXSdlGraphicsManager::DINGUXSdlGraphicsManager(SdlEventSource *boss)
+ : SdlGraphicsManager(boss) {
}
const OSystem::GraphicsMode *DINGUXSdlGraphicsManager::getSupportedGraphicsModes() const {
@@ -125,7 +125,7 @@ void DINGUXSdlGraphicsManager::initSize(uint w, uint h) {
if (w > 320 || h > 240) {
setGraphicsMode(GFX_HALF);
setGraphicsModeIntern();
- _evSrc->toggleMouseGrab();
+ _sdlEventSource->toggleMouseGrab();
}
_transactionDetails.sizeChanged = true;