aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorStrangerke2013-01-03 22:32:22 +0100
committerStrangerke2013-01-03 22:32:22 +0100
commit6976be7438ef842e08c8b4587c7e323d4af21109 (patch)
treeb0a32a9c1b8ef9677dc003cbfdd367e218973ef0 /engines/hopkins/graphics.h
parent079994d35c2d366a255c66a8cddd55a6cb5b7150 (diff)
downloadscummvm-rg350-6976be7438ef842e08c8b4587c7e323d4af21109.tar.gz
scummvm-rg350-6976be7438ef842e08c8b4587c7e323d4af21109.tar.bz2
scummvm-rg350-6976be7438ef842e08c8b4587c7e323d4af21109.zip
HOPKINS: Rename functions related to fade in/out. Fix a potential issue for short fadings
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index ad05f1aa6b..4ab447b5ba 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -77,7 +77,7 @@ public:
int _lineNbr2;
int Agr_x, Agr_y;
int Agr_Flag_x, Agr_Flag_y;
- int FADESPD;
+ int _fadeDefaultSpeed;
int FADE_LINUX;
bool _skipVideoLockFl;
int no_scroll;
@@ -117,12 +117,12 @@ public:
void Copy_Vga16(const byte *surface, int xp, int yp, int width, int height, int destX, int destY);
void fadeIn(const byte *palette, int step, const byte *surface);
void fadeOut(const byte *palette, int step, const byte *surface);
- void FADE_INS();
- void FADE_OUTS();
- void FADE_INW();
- void FADE_OUTW();
- void FADE_OUTW_LINUX(const byte *surface);
- void FADE_INW_LINUX(const byte *surface);
+ void fadeInShort();
+ void fadeOutShort();
+ void fadeInLong();
+ void fadeOutLong();
+ void fadeOutDefaultLength(const byte *surface);
+ void fadeInDefaultLength(const byte *surface);
void fadeInBreakout();
void fateOutBreakout();
void setpal_vga256(const byte *palette);