aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/paint16.h
diff options
context:
space:
mode:
authorColin Snover2016-06-18 20:48:10 -0500
committerColin Snover2016-06-21 08:14:12 -0500
commita613a27b44eae68650eb9150ea146dff9befea28 (patch)
tree0aacbadabc6013a1ed45b234e14d71d9f6ea09f1 /engines/sci/graphics/paint16.h
parent94328f0ec8baa96947c5b82c63bdd298ba44981d (diff)
downloadscummvm-rg350-a613a27b44eae68650eb9150ea146dff9befea28.tar.gz
scummvm-rg350-a613a27b44eae68650eb9150ea146dff9befea28.tar.bz2
scummvm-rg350-a613a27b44eae68650eb9150ea146dff9befea28.zip
SCI32: Implement line drawing (kAddLine/kUpdateLine/kRemoveLine)
This line drawing code lives in a remodelled GfxPaint32 class that is totally separate from GfxPaint16.
Diffstat (limited to 'engines/sci/graphics/paint16.h')
-rw-r--r--engines/sci/graphics/paint16.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/sci/graphics/paint16.h b/engines/sci/graphics/paint16.h
index 955cfdec8f..317388b2df 100644
--- a/engines/sci/graphics/paint16.h
+++ b/engines/sci/graphics/paint16.h
@@ -23,8 +23,6 @@
#ifndef SCI_GRAPHICS_PAINT16_H
#define SCI_GRAPHICS_PAINT16_H
-#include "sci/graphics/paint.h"
-
namespace Sci {
class GfxPorts;
@@ -36,7 +34,7 @@ class GfxView;
/**
* Paint16 class, handles painting/drawing for SCI16 (SCI0-SCI1.1) games
*/
-class GfxPaint16 : public GfxPaint {
+class GfxPaint16 {
public:
GfxPaint16(ResourceManager *resMan, SegManager *segMan, GfxCache *cache, GfxPorts *ports, GfxCoordAdjuster *coordAdjuster, GfxScreen *screen, GfxPalette *palette, GfxTransitions *transitions, AudioPlayer *audio);
~GfxPaint16();