aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sprites.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/sprites.h')
-rw-r--r--engines/sludge/sprites.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sludge/sprites.h b/engines/sludge/sprites.h
index 470cad64e2..521fb5298d 100644
--- a/engines/sludge/sprites.h
+++ b/engines/sludge/sprites.h
@@ -66,12 +66,11 @@ struct SpriteDisplay {
int x, y;
int width, height;
bool freeAfterUse;
- uint32 color;
Graphics::FLIP_FLAGS flip;
Graphics::Surface *surface;
- SpriteDisplay(int xpos, int ypos, Graphics::FLIP_FLAGS f, Graphics::Surface *ptr, int w = -1, int h = 1, uint32 c = TS_ARGB(255, 255, 255, 255), bool free = false) :
- x(xpos), y(ypos), flip(f), surface(ptr), width(w), height(h), color(c), freeAfterUse(free) {
+ SpriteDisplay(int xpos, int ypos, Graphics::FLIP_FLAGS f, Graphics::Surface *ptr, int w = -1, int h = 1, bool free = false) :
+ x(xpos), y(ypos), flip(f), surface(ptr), width(w), height(h), freeAfterUse(free) {
}
};