aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorStrangerke2012-12-18 00:37:52 +0100
committerStrangerke2012-12-18 00:37:52 +0100
commitfbd2c0e9182cf6a3ff90cf83b47347dfdd4de564 (patch)
tree7bdf730855c12cd791f7778af3444153c7a80033 /engines/hopkins/graphics.h
parent1182885d127774895246e52d0fef435ff71a8441 (diff)
downloadscummvm-rg350-fbd2c0e9182cf6a3ff90cf83b47347dfdd4de564.tar.gz
scummvm-rg350-fbd2c0e9182cf6a3ff90cf83b47347dfdd4de564.tar.bz2
scummvm-rg350-fbd2c0e9182cf6a3ff90cf83b47347dfdd4de564.zip
HOPKINS: Some renaming, rework some loop statements
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index deb396b0db..24ea17083a 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -95,7 +95,7 @@ public:
int SDL_NBLOCS;
int Red_x, Red_y;
int Red;
- int Largeur;
+ int _width;
int Compteur_y;
int spec_largeur;
bool NOFADE;
@@ -185,8 +185,8 @@ public:
void Copy_WinScan_Vbe(const byte *srcP, byte *destP);
void Copy_Video_Vbe(const byte *src);
void Reduc_Ecran(const byte *srcSruface, byte *destSurface, int xp, int yp, int width, int height, int zoom);
- void Plot_Hline(byte *surface, int xp, int yp, unsigned int width, byte col);
- void Plot_Vline(byte *surface, int xp, int yp, int height, byte col);
+ void drawHorizontalLine(byte *surface, int xp, int yp, unsigned int width, byte col);
+ void drawVerticalLine(byte *surface, int xp, int yp, int height, byte col);
void MODE_VESA();
};