aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-01 23:56:32 +0300
committerEugene Sandulenko2016-08-01 23:56:32 +0300
commit6f87a2b2e8088d23687692ae32cb45292e6703ba (patch)
tree86f9ee514fe60423d1e11a80f7aa7fcb4f6dbfb9
parentd5d42d5066df7eb4c11bf703506aea54af18ec93 (diff)
downloadscummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.tar.gz
scummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.tar.bz2
scummvm-rg350-6f87a2b2e8088d23687692ae32cb45292e6703ba.zip
SCI: Fix warnings
-rw-r--r--engines/sci/engine/segment.h2
-rw-r--r--engines/sci/graphics/frameout.h2
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.