LAB: Bugfixes for the lowres DOS version

The lowres DOS version should be working properly now
This commit is contained in:
Filippos Karapetis 2016-01-08 02:00:37 +02:00
parent e3b9f726a1
commit 31d47d6be2
4 changed files with 4 additions and 20 deletions

View file

@ -162,7 +162,7 @@ void Utils::verticalUnDiff(T *dest, Common::File *sourceFile, uint16 bytesPerRow
while (copy) {
if (bytesPerWord == 1)
*curPtr++ = sourceFile->readByte();
*curPtr = sourceFile->readByte();
else if (bytesPerWord == 2)
*curPtr = sourceFile->readUint16LE();
else if (bytesPerWord == 4)