diff options
author | Eugene Sandulenko | 2016-08-01 23:56:32 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-01 23:56:32 +0300 |
commit | 6f87a2b2e8088d23687692ae32cb45292e6703ba (patch) | |
tree | 86f9ee514fe60423d1e11a80f7aa7fcb4f6dbfb9 /engines | |
parent | d5d42d5066df7eb4c11bf703506aea54af18ec93 (diff) | |
download | scummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.tar.gz scummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.tar.bz2 scummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.zip |
SCI: Fix warnings
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/segment.h | 2 | ||||
-rw-r--r-- | engines/sci/graphics/frameout.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/segment.h b/engines/sci/engine/segment.h index a99f61333b..7c39050f18 100644 --- a/engines/sci/engine/segment.h +++ b/engines/sci/engine/segment.h @@ -535,7 +535,7 @@ inline void set##property(uint##size value) {\ WRITE_SCI11ENDIAN_UINT##size(_data + (offset), (value));\ } -class BitmapTable; +struct BitmapTable; /** * A convenience class for creating and modifying in-memory diff --git a/engines/sci/graphics/frameout.h b/engines/sci/graphics/frameout.h index 1724ad94b6..42f1d80101 100644 --- a/engines/sci/graphics/frameout.h +++ b/engines/sci/graphics/frameout.h @@ -33,7 +33,7 @@ typedef Common::Array<RectList> EraseListList; class GfxCoordAdjuster32; class GfxScreen; class GfxTransitions32; -class PlaneShowStyle; +struct PlaneShowStyle; /** * Frameout class, kFrameout and relevant functions for SCI32 games. |