diff options
| author | John Willis | 2010-10-20 13:00:58 +0000 |
|---|---|---|
| committer | John Willis | 2010-10-20 13:00:58 +0000 |
| commit | 4e936522eeb0de8092ad74e8522b885550d934cb (patch) | |
| tree | 38126aac0dcdf2094d71d0ec901b918e15330b4b /backends/platform/sdl | |
| parent | 14e82dbe7f25c1a31cc8afbc712ee0246c7706dc (diff) | |
| download | scummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.tar.gz scummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.tar.bz2 scummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.zip | |
GPH: Cleanup Readme and support scripts.
GP2X: Cleanup Readme.
SDL: Change a few backend defines to GPH_DEVICE from the device name (blocking main and loadGFXMode so they can be written elsewhere).
svn-id: r53639
Diffstat (limited to 'backends/platform/sdl')
| -rw-r--r-- | backends/platform/sdl/graphics.cpp | 2 | ||||
| -rw-r--r-- | backends/platform/sdl/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/graphics.cpp b/backends/platform/sdl/graphics.cpp index 6ee10119cc..df63c3a7d6 100644 --- a/backends/platform/sdl/graphics.cpp +++ b/backends/platform/sdl/graphics.cpp @@ -539,7 +539,7 @@ bool OSystem_SDL::loadGFXMode() { assert(_inited); _forceFull = true; -#if !defined(__MAEMO__) && !defined(GP2XWIZ) && !defined(LINUXMOTO) && !defined(DINGUX) && !defined(OPENPANDORA) +#if !defined(__MAEMO__) && !defined(DINGUX) && !defined(GPH_DEVICE) && !defined(LINUXMOTO) && !defined(OPENPANDORA) _videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor; _videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor; diff --git a/backends/platform/sdl/main.cpp b/backends/platform/sdl/main.cpp index c27ccc09d4..60bf59689c 100644 --- a/backends/platform/sdl/main.cpp +++ b/backends/platform/sdl/main.cpp @@ -38,7 +38,7 @@ // Several SDL based ports use a custom main, and hence do not want to compile // of this file. The following "#if" ensures that. -#if !defined(__MAEMO__) && !defined(_WIN32_WCE) && !defined(CAANOO) && !defined(GP2XWIZ) && !defined(LINUXMOTO) && !defined(OPENPANDORA) && !defined(__SYMBIAN32__) && !defined(DINGUX) +#if !defined(__MAEMO__) && !defined(__SYMBIAN32__) && !defined(_WIN32_WCE) && !defined(DINGUX) && !defined(GPH_DEVICE) && !defined(LINUXMOTO) && !defined(OPENPANDORA) #include "backends/platform/sdl/sdl.h" |
