diff --git a/src/modules/graphics/Texture.cpp b/src/modules/graphics/Texture.cpp index 704695510..59bc50319 100644 --- a/src/modules/graphics/Texture.cpp +++ b/src/modules/graphics/Texture.cpp @@ -27,15 +27,6 @@ #include #include -#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 {