Skip to content

Commit

Permalink
BLADERUNNER: Fix AmigaOS compilation (attempt 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniou79 committed Jul 29, 2019
1 parent b939168 commit fc6f9c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/bladerunner/ambient_sounds.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit fc6f9c9

Please sign in to comment.