blob: 800ec4fd0f46524c7177836b7926ca0e30b82a28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/Opcodes/CMakeLists.txt b/Opcodes/CMakeLists.txt
index af39138..ec48294 100644
--- a/Opcodes/CMakeLists.txt
+++ b/Opcodes/CMakeLists.txt
@@ -41,7 +41,7 @@ check_include_file(wiiuse.h WIIUSE_H)
find_library(WIIUSE_LIB wiiuse)
check_include_file(p5glove.h P5GLOVE_H)
find_library(P5GLOVE_LIB p5glove)
-check_include_file(lame.h LAME_HEADER)
+check_include_file(lame/lame.h LAME_HEADER)
find_library(LAME_LIB mp3lame)
## OPCODE LIBS WITH NO EXTERNAL DEPENDENCIES ##
diff --git a/Opcodes/lame.c b/Opcodes/lame.c
index a951f47..0c1c3e6 100644
--- a/Opcodes/lame.c
+++ b/Opcodes/lame.c
@@ -22,7 +22,7 @@
*/
#include "csdl.h"
-#include "lame.h"
+#include "lame/lame.h"
typedef struct _mp3out {
OPDS h;
|