mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-21 01:05:59 +00:00
BLADERUNNER: Fix AmigaOS compilation (attempt 2)
This commit is contained in:
parent
b939168b61
commit
fc6f9c9adb
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user