aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
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