[Scummvm-git-logs] scummvm master -> 317b7e7fb4c71af9d11bf6b9051a426b0cdd392e

digitall dgturner at iee.org
Tue Jan 17 10:38:28 CET 2017


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:
317b7e7fb4 BLADERUNNER: Fix Unsigned vs. Signed Compiler Warnings.


Commit: 317b7e7fb4c71af9d11bf6b9051a426b0cdd392e
    https://github.com/scummvm/scummvm/commit/317b7e7fb4c71af9d11bf6b9051a426b0cdd392e
Author: D G Turner (digitall at scummvm.org)
Date: 2017-01-17T09:45:08Z

Commit Message:
BLADERUNNER: Fix Unsigned vs. Signed Compiler Warnings.

Changed paths:
    engines/bladerunner/bladerunner.h


diff --git a/engines/bladerunner/bladerunner.h b/engines/bladerunner/bladerunner.h
index b0eb459..23ea88b 100644
--- a/engines/bladerunner/bladerunner.h
+++ b/engines/bladerunner/bladerunner.h
@@ -135,7 +135,7 @@ public:
 	int _walkSoundBalance;
 	int _walkingActorId;
 private:
-	static const int kArchiveCount = 10;
+	static const uint kArchiveCount = 10;
 	MIXArchive _archives[kArchiveCount];
 
 public:





More information about the Scummvm-git-logs mailing list