diff options
author | Johannes Schickel | 2011-04-17 21:14:19 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-04-17 21:14:19 +0200 |
commit | 877004dbdd967d2f57d494b1aaa1cb55aae0fd52 (patch) | |
tree | fe3630f18560b876300c42d50b2993b7b8da32da /backends/platform/iphone | |
parent | 3fd919060ca6bbf896680f3548bfaac020900d42 (diff) | |
download | scummvm-rg350-877004dbdd967d2f57d494b1aaa1cb55aae0fd52.tar.gz scummvm-rg350-877004dbdd967d2f57d494b1aaa1cb55aae0fd52.tar.bz2 scummvm-rg350-877004dbdd967d2f57d494b1aaa1cb55aae0fd52.zip |
BACKENDS: Adapt various backends code to set up Surface::format correctly.
Note that this change is not tested at all (not even compile wise!).
Diffstat (limited to 'backends/platform/iphone')
-rw-r--r-- | backends/platform/iphone/osys_video.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/iphone/osys_video.cpp b/backends/platform/iphone/osys_video.cpp index c5e7ab8413..6f5b0e1e19 100644 --- a/backends/platform/iphone/osys_video.cpp +++ b/backends/platform/iphone/osys_video.cpp @@ -335,6 +335,7 @@ Graphics::Surface *OSystem_IPHONE::lockScreen() { _framebuffer.h = _screenHeight; _framebuffer.pitch = _screenWidth; _framebuffer.bytesPerPixel = 1; + _framebuffer.format = Graphics::PixelFormat::createFormatCLUT8(); return &_framebuffer; } |