aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screenfx.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-12-23 22:37:24 +0000
committerFilippos Karapetis2008-12-23 22:37:24 +0000
commit51c22d99050196c0ba528204e9db3609ae3e27ae (patch)
tree04ee9619b19bb770b26dd449bb58e67a826bfa1d /engines/made/screenfx.h
parenta150aea638988eaf76e712f2ab9365e570df0697 (diff)
downloadscummvm-rg350-51c22d99050196c0ba528204e9db3609ae3e27ae.tar.gz
scummvm-rg350-51c22d99050196c0ba528204e9db3609ae3e27ae.tar.bz2
scummvm-rg350-51c22d99050196c0ba528204e9db3609ae3e27ae.zip
Added stubs for the missing visual effect opcodes
svn-id: r35512
Diffstat (limited to 'engines/made/screenfx.h')
-rw-r--r--engines/made/screenfx.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/made/screenfx.h b/engines/made/screenfx.h
index 61fb426c4c..18fcbd29ce 100644
--- a/engines/made/screenfx.h
+++ b/engines/made/screenfx.h
@@ -53,6 +53,7 @@ private:
void setBlendedPalette(byte *palette, byte *newPalette, int colorCount, int16 value, int16 maxValue);
void copyFxRect(Graphics::Surface *surface, int16 x1, int16 y1, int16 x2, int16 y2);
void copyRect(Graphics::Surface *surface, int16 x1, int16 y1, int16 x2, int16 y2);
+
void vfx00(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx01(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx02(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
@@ -61,6 +62,7 @@ private:
void vfx05(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx06(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx07(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx08(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx09(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx10(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx11(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
@@ -70,6 +72,9 @@ private:
void vfx15(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx16(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
void vfx17(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx18(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx19(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
+ void vfx20(Graphics::Surface *surface, byte *palette, byte *newPalette, int colorCount);
};
} // End of namespace Made