diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/fxcodec/codec/DEPS | 3 | ||||
-rw-r--r-- | core/src/fxcodec/codec/fx_codec_png.cpp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/core/src/fxcodec/codec/DEPS b/core/src/fxcodec/codec/DEPS new file mode 100644 index 0000000000..9caa4d8533 --- /dev/null +++ b/core/src/fxcodec/codec/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + '+third_party/libpng/png.h', +] diff --git a/core/src/fxcodec/codec/fx_codec_png.cpp b/core/src/fxcodec/codec/fx_codec_png.cpp index 3acfc19442..97c2f77f77 100644 --- a/core/src/fxcodec/codec/fx_codec_png.cpp +++ b/core/src/fxcodec/codec/fx_codec_png.cpp @@ -12,7 +12,7 @@ extern "C" {
#undef FAR
-#include "third_party/lpng_v163/png.h"
+#include "third_party/libpng/png.h"
}
static void _png_error_data(png_structp png_ptr, png_const_charp error_msg) {
|