diff options
author | Filippos Karapetis | 2015-12-03 14:22:04 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:48 +0100 |
commit | 1913a61f30f4200c044f11268ab6fca40f0af510 (patch) | |
tree | bab51cddcba309489487c71c8fa3f49946046732 /engines/lab/vga.cpp | |
parent | 23b70db958604649f5a324a09da56c5dc86a57c0 (diff) | |
download | scummvm-rg350-1913a61f30f4200c044f11268ab6fca40f0af510.tar.gz scummvm-rg350-1913a61f30f4200c044f11268ab6fca40f0af510.tar.bz2 scummvm-rg350-1913a61f30f4200c044f11268ab6fca40f0af510.zip |
LAB: Some renaming and cleanup
Diffstat (limited to 'engines/lab/vga.cpp')
-rw-r--r-- | engines/lab/vga.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/vga.cpp b/engines/lab/vga.cpp index 73f80b29f8..0248bb823c 100644 --- a/engines/lab/vga.cpp +++ b/engines/lab/vga.cpp @@ -270,9 +270,9 @@ void LabEngine::drawHLine(uint16 x1, uint16 y, uint16 x2) { } /*****************************************************************************/ -/* Ghoasts a region on the screen using the desired pen color. */ +/* Overlays a region on the screen using the desired pen color. */ /*****************************************************************************/ -void LabEngine::ghoastRect(uint16 pencolor, uint16 x1, uint16 y1, uint16 x2, uint16 y2) { +void LabEngine::overlayRect(uint16 pencolor, uint16 x1, uint16 y1, uint16 x2, uint16 y2) { int dx = x1; int dy = y1; int w = x2 - x1 + 1; |