[Scummvm-git-logs] scummvm master -> 4b3ed3d32d567580e1b9d77a5f7c11a360d01ed1

dreammaster dreammaster at scummvm.org
Mon Jan 15 04:36:20 CET 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
4b3ed3d32d XEEN: Fix compiler warning


Commit: 4b3ed3d32d567580e1b9d77a5f7c11a360d01ed1
    https://github.com/scummvm/scummvm/commit/4b3ed3d32d567580e1b9d77a5f7c11a360d01ed1
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-01-14T22:36:12-05:00

Commit Message:
XEEN: Fix compiler warning

Changed paths:
    engines/xeen/files.h


diff --git a/engines/xeen/files.h b/engines/xeen/files.h
index 37b2422..086bb00 100644
--- a/engines/xeen/files.h
+++ b/engines/xeen/files.h
@@ -62,9 +62,9 @@ class SavesManager;
  */
 struct CCEntry {
 	uint16 _id;
-	uint32 _offset;
+	int _offset;
 	uint16 _size;
-	uint32 _writeOffset;
+	int _writeOffset;
 
 	CCEntry() : _id(0), _offset(0), _size(0), _writeOffset(0) {}
 	CCEntry(uint16 id, uint32 offset, uint32 size)





More information about the Scummvm-git-logs mailing list