From 277e52906ab5f48d7bc170834f6c06474dd45461 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 17 Jun 2022 02:24:12 -0700 Subject: [PATCH] [Musepack Library] Fix capitalization of headers Header include paths are named after the framework, which is all lower- case, not uppercase like the source folder is named. The header include paths inside the project are lowercase as well, so this fits. Signed-off-by: Christopher Snowhill --- Frameworks/MPCDec/Files/include/mpcdec/mpcdec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/MPCDec/Files/include/mpcdec/mpcdec.h b/Frameworks/MPCDec/Files/include/mpcdec/mpcdec.h index c0d5bd063..fa71d3466 100644 --- a/Frameworks/MPCDec/Files/include/mpcdec/mpcdec.h +++ b/Frameworks/MPCDec/Files/include/mpcdec/mpcdec.h @@ -39,8 +39,8 @@ #pragma once #endif -#include -#include +#include +#include #ifdef __cplusplus extern "C" {