Browse Source

compile error fixes for linux/iOS

Sasha Szpakowski 2 years ago
parent
commit
3fb5ddadcb
2 changed files with 2 additions and 0 deletions
  1. 1 0
      src/modules/graphics/vertex.h
  2. 1 0
      src/modules/sound/lullaby/CoreAudioDecoder.cpp

+ 1 - 0
src/modules/graphics/vertex.h

@@ -27,6 +27,7 @@
 
 // C
 #include <stddef.h>
+#include <string.h>
 #include <vector>
 #include <string>
 

+ 1 - 0
src/modules/sound/lullaby/CoreAudioDecoder.cpp

@@ -22,6 +22,7 @@
 
 // LOVE
 #include "CoreAudioDecoder.h"
+#include "common/Exception.h"
 
 // C++
 #include <vector>