[Scummvm-git-logs] scummvm master -> fc6f9c9adb026da5c30829c7472f98da432fa19c

antoniou79 antoniou at cti.gr
Mon Jul 29 14:32:25 CEST 2019


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:
fc6f9c9adb BLADERUNNER: Fix AmigaOS compilation (attempt 2)


Commit: fc6f9c9adb026da5c30829c7472f98da432fa19c
    https://github.com/scummvm/scummvm/commit/fc6f9c9adb026da5c30829c7472f98da432fa19c
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2019-07-29T15:31:46+03:00

Commit Message:
BLADERUNNER: Fix AmigaOS compilation (attempt 2)

Changed paths:
    engines/bladerunner/ambient_sounds.cpp


diff --git a/engines/bladerunner/ambient_sounds.cpp b/engines/bladerunner/ambient_sounds.cpp
index 6d2169e..827fbe4 100644
--- a/engines/bladerunner/ambient_sounds.cpp
+++ b/engines/bladerunner/ambient_sounds.cpp
@@ -57,9 +57,9 @@ AmbientSounds::~AmbientSounds() {
 	delete[] _loopingSounds;
 }
 
-static inline void sort(int32 *a, int32 *b) {
+static inline void sort(int *a, int *b) {
 	if (*a > *b) {
-		int32 t = *a;
+		int t = *a;
 		*a = *b;
 		*b = t;
 	}





More information about the Scummvm-git-logs mailing list