diff options
author | Max Horn | 2009-07-28 22:33:20 +0000 |
---|---|---|
committer | Max Horn | 2009-07-28 22:33:20 +0000 |
commit | a565441f0cce65b6a3bee713c1e88f2ad7c67c76 (patch) | |
tree | 402eebb80c0919e19b59264b586c3fa470205117 /engines/sci/gfx | |
parent | 52a160657f4db676e30b6d52abbf513154aad662 (diff) | |
download | scummvm-rg350-a565441f0cce65b6a3bee713c1e88f2ad7c67c76.tar.gz scummvm-rg350-a565441f0cce65b6a3bee713c1e88f2ad7c67c76.tar.bz2 scummvm-rg350-a565441f0cce65b6a3bee713c1e88f2ad7c67c76.zip |
Added missing initializer for member âSci::gfx_mode_t::format'
svn-id: r42867
Diffstat (limited to 'engines/sci/gfx')
-rw-r--r-- | engines/sci/gfx/gfx_resmgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/gfx/gfx_resmgr.cpp b/engines/sci/gfx/gfx_resmgr.cpp index cd5b1be431..ca61b534ed 100644 --- a/engines/sci/gfx/gfx_resmgr.cpp +++ b/engines/sci/gfx/gfx_resmgr.cpp @@ -326,7 +326,8 @@ gfx_mode_t mode_1x1_color_index = { /* Fake 1x1 mode */ /* palette */ NULL, /* color masks */ 0, 0, 0, 0, - /* color shifts */ 0, 0, 0, 0 + /* color shifts */ 0, 0, 0, 0, + Graphics::PixelFormat() }; gfxr_pic_t *GfxResManager::getPic(int num, int maps, int flags, int default_palette, bool scaled) { |