aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sprites.h
diff options
context:
space:
mode:
authorSimei Yin2017-08-12 12:14:59 +0200
committerSimei Yin2017-08-12 12:14:59 +0200
commit1892d60c7ad88a1d9fdf83e56e39854dbda23e3d (patch)
tree4b7f148734af6b3a16f483806f6fd82a454ffdef /engines/sludge/sprites.h
parent02b09dc8fc7716e587d2120dd0674a492d3a6eb3 (diff)
downloadscummvm-rg350-1892d60c7ad88a1d9fdf83e56e39854dbda23e3d.tar.gz
scummvm-rg350-1892d60c7ad88a1d9fdf83e56e39854dbda23e3d.tar.bz2
scummvm-rg350-1892d60c7ad88a1d9fdf83e56e39854dbda23e3d.zip
SLUDGE: Apply dark color to sprite using multipy 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) {
}
};