diff options
author | Johannes Schickel | 2008-09-02 13:17:40 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-09-02 13:17:40 +0000 |
commit | b235b51e627b15a45af8ef2f289db82f72c1d3ad (patch) | |
tree | 6aa21cdffe27b70da4938ba0e07e26a1c9429fa3 /backends | |
parent | a9248bf327d7ce177eb3c02d661b945393c0fbb7 (diff) | |
download | scummvm-rg350-b235b51e627b15a45af8ef2f289db82f72c1d3ad.tar.gz scummvm-rg350-b235b51e627b15a45af8ef2f289db82f72c1d3ad.tar.bz2 scummvm-rg350-b235b51e627b15a45af8ef2f289db82f72c1d3ad.zip |
Fake 320x200 resolution instead of 200x320.
svn-id: r34279
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/null/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp index a2696e44bc..610f1d3a42 100644 --- a/backends/platform/null/null.cpp +++ b/backends/platform/null/null.cpp @@ -204,11 +204,11 @@ void OSystem_NULL::initSize(uint width, uint height) { } int16 OSystem_NULL::getHeight() { - return 320; + return 200; } int16 OSystem_NULL::getWidth() { - return 200; + return 320; } void OSystem_NULL::setPalette(const byte *colors, uint start, uint num) { |