aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorStrangerke2012-12-15 22:46:09 +0100
committerStrangerke2012-12-15 22:46:09 +0100
commitd7d8c19dae1a8ca586851892da406a3b4025f4c8 (patch)
tree4103f9a9900532d6f31932a9236dda75af6676ab /engines/hopkins/graphics.h
parent0ec1994adc2f70ef1f7bb1ffc6b005e9201c7127 (diff)
downloadscummvm-rg350-d7d8c19dae1a8ca586851892da406a3b4025f4c8.tar.gz
scummvm-rg350-d7d8c19dae1a8ca586851892da406a3b4025f4c8.tar.bz2
scummvm-rg350-d7d8c19dae1a8ca586851892da406a3b4025f4c8.zip
HOPKINS: Merge two zoom in and out functions
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index e92cbf8fdc..4d4777a115 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -52,8 +52,6 @@ private:
HopkinsEngine *_vm;
void CHARGE_ECRAN(const Common::String &file);
- int Asm_Zoom(int v, int percentage);
- int Asm_Reduc(int v, int percentage);
public:
int _lockCtr;
bool SDL_MODEYES;
@@ -177,8 +175,8 @@ public:
void CopyAsm(const byte *surface);
void CopyAsm16(const byte *surface);
void Restore_Mem(byte *destSurface, const byte *src, int xp, int yp, int width, int height);
- int Reel_Zoom(int v, int percentage);
- int Reel_Reduc(int v, int percentage);
+ int zoomIn(int v, int percentage);
+ int zoomOut(int v, int percentage);
void Affiche_Perfect(byte *surface, const byte *srcData, int xp300, int yp300, int frameIndex, int zoom1, int zoom2, int modeFlag);
void AFFICHE_SPEED(const byte *spriteData, int xp, int yp, int spriteIndex);
void SCOPY(const byte *surface, int x1, int y1, int width, int height, byte *destSurface, int destX, int destY);