Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions core/audio/oal_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
****************************************************************************/
#pragma once

#if !defined(__APPLE__) && !defined(__EMSCRIPTEN__)
# if !defined(AX_USE_ALSOFT)
# define AX_USE_ALSOFT 1
# endif
#if defined(AX_USE_ALSOFT)
# undef AX_USE_ALSOFT
#endif

#if !defined(__EMSCRIPTEN__)
# define AX_USE_ALSOFT 1
#else
# if !defined(AX_USE_ALSOFT)
# define AX_USE_ALSOFT 0
# endif
# define AX_USE_ALSOFT 0
#endif

// Use the OpenAL Soft headers bundled with Axmol instead of system-installed AL/xxx.h.
Expand Down
Loading