Minor adjustments for 0.11.0-alpha1

This commit is contained in:
Martin Felis
2018-03-31 19:48:40 +02:00
parent f8241c1b65
commit 408778fb8f
4 changed files with 9 additions and 21 deletions
@@ -27,15 +27,6 @@
#include <cmath>
#include <algorithm>
#ifdef LOVE_ANDROID
// log2 is not declared in the math.h shipped with the Android NDK
static inline double log2(double n)
{
// log(n)/log(2) is log2.
return std::log(n) / std::log(2);
}
#endif
namespace love
{