diff options
author | Marisa-Chan | 2014-01-12 19:19:11 +0700 |
---|---|---|
committer | Marisa-Chan | 2014-01-12 19:19:11 +0700 |
commit | e2dc6d31d27760bae85b1e00eba32011a07da178 (patch) | |
tree | 5c0ab426c57b37ea31feb01d918db41b9215cb28 /engines/zvision/render_manager.h | |
parent | 1428cb8950e5bdcfad9d15d0fb2e32ff1dbc0bae (diff) | |
download | scummvm-rg350-e2dc6d31d27760bae85b1e00eba32011a07da178.tar.gz scummvm-rg350-e2dc6d31d27760bae85b1e00eba32011a07da178.tar.bz2 scummvm-rg350-e2dc6d31d27760bae85b1e00eba32011a07da178.zip |
ZVISION: Correct RenderManager methods for support menu.
Diffstat (limited to 'engines/zvision/render_manager.h')
-rw-r--r-- | engines/zvision/render_manager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/zvision/render_manager.h b/engines/zvision/render_manager.h index de53481be0..901385b453 100644 --- a/engines/zvision/render_manager.h +++ b/engines/zvision/render_manager.h @@ -242,8 +242,11 @@ public: Graphics::Surface *getBkgRect(Common::Rect &rect); Graphics::Surface *loadImage(const char *file); Graphics::Surface *loadImage(Common::String &file); + Graphics::Surface *loadImage(const char *file, bool transposed); + Graphics::Surface *loadImage(Common::String &file, bool transposed); void clearMenuSurface(); + void clearMenuSurface(const Common::Rect &r); void renderMenuToScreen(); void prepareBkg(); @@ -259,6 +262,7 @@ public: * @param destination A reference to the Surface to store the pixel data in */ void readImageToSurface(const Common::String &fileName, Graphics::Surface &destination); + void readImageToSurface(const Common::String &fileName, Graphics::Surface &destination, bool transposed); }; } // End of namespace ZVision |