aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2004-05-21 20:43:07 +0000
committerMax Horn2004-05-21 20:43:07 +0000
commitcff4e1d49fd919dc8e0554beea930b02a7fcad90 (patch)
tree1970479f54624f98855d4ed878dc65e736be689b /common
parent7a772513c54387141dbbff1a8f0c125d1a2b74e9 (diff)
downloadscummvm-rg350-cff4e1d49fd919dc8e0554beea930b02a7fcad90.tar.gz
scummvm-rg350-cff4e1d49fd919dc8e0554beea930b02a7fcad90.tar.bz2
scummvm-rg350-cff4e1d49fd919dc8e0554beea930b02a7fcad90.zip
Tweaks (Morphos & Palm backends badly need updating :-/)
svn-id: r13848
Diffstat (limited to 'common')
-rw-r--r--common/scaler.h6
-rw-r--r--common/system.cpp4
2 files changed, 3 insertions, 7 deletions
diff --git a/common/scaler.h b/common/scaler.h
index fb427c6fac..ccc57e2d25 100644
--- a/common/scaler.h
+++ b/common/scaler.h
@@ -70,11 +70,7 @@ enum {
GFX_HQ2X = 8,
GFX_HQ3X = 9,
GFX_TV2X = 10,
- GFX_DOTMATRIX = 11,
-
- GFX_FLIPPING = 100, // Palmos
- GFX_BUFFERED = 101, // Palmos
- GFX_WIDE = 102 // palmos
+ GFX_DOTMATRIX = 11
};
diff --git a/common/system.cpp b/common/system.cpp
index b9cfb8de8f..75998e3795 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -45,11 +45,11 @@ static OSystem *createSystem() {
#elif defined(X11_BACKEND)
return OSystem_X11_create();
#elif defined(__MORPHOS__)
- return OSystem_MorphOS_create(gfx_mode, ConfMan.getBool("fullscreen"));
+ return OSystem_MorphOS_create();
#elif defined(_WIN32_WCE)
return OSystem_WINCE3_create();
#elif defined(__GP32__) // ph0x
- return OSystem_GP32_create(GFX_NORMAL, true);
+ return OSystem_GP32_create();
#elif defined(__PALM_OS__) //chrilith
return OSystem_PALMOS_create();
#else