From 67df617f2ba944e4613c6229879854d5fdde4935 Mon Sep 17 00:00:00 2001 From: Mike H Date: Sat, 3 Mar 2018 18:06:19 +0000 Subject: [PATCH] Capitalization fix --- nx/include/switch/audio/audio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nx/include/switch/audio/audio.h b/nx/include/switch/audio/audio.h index 7132cae2..04dac7a2 100644 --- a/nx/include/switch/audio/audio.h +++ b/nx/include/switch/audio/audio.h @@ -10,10 +10,10 @@ typedef enum { PcmFormat_Invalid = 0, - PcmFormat_INT8 = 1, - PcmFormat_INT16 = 2, - PcmFormat_INT24 = 3, - PcmFormat_INT32 = 4, - PcmFormat_FLOAT = 5, + PcmFormat_Int8 = 1, + PcmFormat_Int16 = 2, + PcmFormat_Int24 = 3, + PcmFormat_Int32 = 4, + PcmFormat_Float = 5, PcmFormat_ADPCM = 6, } PcmFormat;