diff options
author | Chris Robinson <[email protected]> | 2018-11-01 16:00:38 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-01 16:00:38 -0700 |
commit | c0ce71a17519652f6663b886be0a84598ab0c095 (patch) | |
tree | 510539bb4f7fd32b776446df484043da0e39c854 | |
parent | 11967dc2dae5e8364dc78bea6f644570e06bf999 (diff) |
Fix a macro check
-rw-r--r-- | Alc/converter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/converter.h b/Alc/converter.h index b58fd831..3f0c6304 100644 --- a/Alc/converter.h +++ b/Alc/converter.h @@ -4,7 +4,7 @@ #include "alMain.h" #include "alu.h" -#ifdef __cpluspluc +#ifdef __cplusplus extern "C" { #endif @@ -48,7 +48,7 @@ void DestroyChannelConverter(ChannelConverter **converter); void ChannelConverterInput(ChannelConverter *converter, const ALvoid *src, ALfloat *dst, ALsizei frames); -#ifdef __cpluspluc +#ifdef __cplusplus } #endif |