From 2510b28a365ad2190623851434cff8b6c50cb4d1 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 6 May 2016 11:43:00 +0700 Subject: [PATCH] Use __EMSCRIPTEN__ and not EMSCRIPTEN. We prefer to use __EMSCRIPTEN__ as the preprocessor flag for detecting emscripten. --- src/unpack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unpack.cpp b/src/unpack.cpp index b8bddac..a2ad2ab 100644 --- a/src/unpack.cpp +++ b/src/unpack.cpp @@ -10,7 +10,7 @@ #include #include -#ifdef EMSCRIPTEN +#ifdef __EMSCRIPTEN__ # include #endif