aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/vga.cpp
diff options
context:
space:
mode:
authorStrangerke2015-11-30 02:09:54 +0100
committerWillem Jan Palenstijn2015-12-23 21:33:44 +0100
commit11df8b5cf76bf9e3bbdbb5b264ec318d0e7e2911 (patch)
tree55daa07f639b441e9cff43486e7dc962dd420884 /engines/lab/vga.cpp
parent6cee2eb2be4e6977d659a47809a91454532c0f11 (diff)
downloadscummvm-rg350-11df8b5cf76bf9e3bbdbb5b264ec318d0e7e2911.tar.gz
scummvm-rg350-11df8b5cf76bf9e3bbdbb5b264ec318d0e7e2911.tar.bz2
scummvm-rg350-11df8b5cf76bf9e3bbdbb5b264ec318d0e7e2911.zip
LAB: Make consistent the type of pen number
Diffstat (limited to 'engines/lab/vga.cpp')
-rw-r--r--engines/lab/vga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/vga.cpp b/engines/lab/vga.cpp
index c7252d4ee5..d3071649c4 100644
--- a/engines/lab/vga.cpp
+++ b/engines/lab/vga.cpp
@@ -524,8 +524,8 @@ void LabEngine::scrollDisplayY(int16 dy, uint16 x1, uint16 y1, uint16 x2, uint16
/*****************************************************************************/
/* Sets the pen number to use on all the drawing operations. */
/*****************************************************************************/
-void LabEngine::setAPen(uint16 pennum) {
- _curapen = (unsigned char)pennum;
+void LabEngine::setAPen(byte pennum) {
+ _curapen = pennum;
}
/*****************************************************************************/