aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/frameout.h
diff options
context:
space:
mode:
authorColin Snover2016-08-14 16:28:37 -0500
committerColin Snover2016-08-19 15:23:10 -0500
commit4e1a9be816c14593b37a672b0789528b1719a199 (patch)
tree8f6f2bbe80aafa4e17e68b0fa9f6590b84f14312 /engines/sci/graphics/frameout.h
parenteae689140458efa657cefc549a3670c60d42bb12 (diff)
downloadscummvm-rg350-4e1a9be816c14593b37a672b0789528b1719a199.tar.gz
scummvm-rg350-4e1a9be816c14593b37a672b0789528b1719a199.tar.bz2
scummvm-rg350-4e1a9be816c14593b37a672b0789528b1719a199.zip
SCI32: Remove CoordAdjuster32, at least for the moment
This may come back in the future to deduplicate some gfx code, but SCI32 had two different inlined ways of doing coordinate conversions with different rounding methods, so CoordAdjuster32 didn't get used when the graphics system was rewritten. At the moment, SCI32 code uses the mulru/mulinc methods from helper.h for scaling up/down coordinates.
Diffstat (limited to 'engines/sci/graphics/frameout.h')
-rw-r--r--engines/sci/graphics/frameout.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/sci/graphics/frameout.h b/engines/sci/graphics/frameout.h
index 92e38fa70f..05e9e4e638 100644
--- a/engines/sci/graphics/frameout.h
+++ b/engines/sci/graphics/frameout.h
@@ -31,7 +31,6 @@ typedef Common::Array<DrawList> ScreenItemListList;
typedef Common::Array<RectList> EraseListList;
class GfxCursor32;
-class GfxCoordAdjuster32;
class GfxTransitions32;
struct PlaneShowStyle;
@@ -42,13 +41,12 @@ struct PlaneShowStyle;
class GfxFrameout {
private:
GfxCursor32 *_cursor;
- GfxCoordAdjuster32 *_coordAdjuster;
GfxPalette32 *_palette;
ResourceManager *_resMan;
SegManager *_segMan;
public:
- GfxFrameout(SegManager *segMan, ResourceManager *resMan, GfxCoordAdjuster *coordAdjuster, GfxPalette32 *palette, GfxTransitions32 *transitions, GfxCursor32 *cursor);
+ GfxFrameout(SegManager *segMan, ResourceManager *resMan, GfxPalette32 *palette, GfxTransitions32 *transitions, GfxCursor32 *cursor);
~GfxFrameout();
bool _isHiRes;