diff --git a/include.xml b/include.xml index a0bd5d612..9559de977 100644 --- a/include.xml +++ b/include.xml @@ -20,8 +20,6 @@ - - @@ -44,9 +42,9 @@ - + - + diff --git a/project/Build.xml b/project/Build.xml index 0d207980a..89d895148 100644 --- a/project/Build.xml +++ b/project/Build.xml @@ -8,13 +8,13 @@ - + - + diff --git a/project/src/system/System.cpp b/project/src/system/System.cpp index 422414be5..575eff845 100644 --- a/project/src/system/System.cpp +++ b/project/src/system/System.cpp @@ -104,7 +104,7 @@ namespace lime { #elif defined (GPH) || defined (HX_LINUX) || defined (EMSCRIPTEN) struct timeval tv; - if (gettimeofday (&tv, NULL)) + if (gettimeofday (&tv, 0)) return 0; double t = (tv.tv_sec + ((double)tv.tv_usec) / 1000000.0);