From: Antoine Vugliano Date: Wed, 7 Oct 2015 22:43:58 +0000 (+0200) Subject: Fix NDSP enums for C++. X-Git-Tag: v1.0.0~78^2 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=b46e0c6a1533148abe92f3c82219d3fceb2b7bdf;p=corbenik%2Fctrulib.git Fix NDSP enums for C++. --- diff --git a/libctru/include/3ds/ndsp/channel.h b/libctru/include/3ds/ndsp/channel.h index 7fa5dc3..8328f7e 100644 --- a/libctru/include/3ds/ndsp/channel.h +++ b/libctru/include/3ds/ndsp/channel.h @@ -12,7 +12,7 @@ enum NDSP_ENCODING_PCM8 = 0, ///< PCM8 NDSP_ENCODING_PCM16, ///< PCM16 NDSP_ENCODING_ADPCM, ///< DSPADPCM (GameCube format) -} NDSP_Encoding; +}; /// Specifies the number of channels used in a sample. #define NDSP_CHANNELS(n) ((u32)(n) & 3) @@ -35,7 +35,7 @@ enum // Flags NDSP_FRONT_BYPASS = BIT(4), ///< Front bypass. NDSP_3D_SURROUND_PREPROCESSED = BIT(6), ///< (?) Unknown, under research -} NDSP_Flags; +}; ///@} ///@name Basic channel operation