diff options
author | Strangerke | 2015-11-30 02:09:54 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:44 +0100 |
commit | 11df8b5cf76bf9e3bbdbb5b264ec318d0e7e2911 (patch) | |
tree | 55daa07f639b441e9cff43486e7dc962dd420884 /engines/lab/vga.cpp | |
parent | 6cee2eb2be4e6977d659a47809a91454532c0f11 (diff) | |
download | scummvm-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.cpp | 4 |
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; } /*****************************************************************************/ |