BLADERUNNER: Fix AmigaOS compilation (attempt 2)

This commit is contained in:
Thanasis Antoniou 2019-07-29 15:31:46 +03:00
parent b939168b61
commit fc6f9c9adb

View File

@ -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;
}