diff options
author | Angus Lees | 2010-06-08 13:23:08 +0000 |
---|---|---|
committer | Angus Lees | 2010-06-08 13:23:08 +0000 |
commit | ec524e3705970a725c9dd1008fff97ccd7f1d250 (patch) | |
tree | 4b697dc0b0055328fd2d6245125872458d95a122 | |
parent | 33c2e03ccc30fb5c7464319081bf5599858f6fd1 (diff) | |
download | scummvm-rg350-ec524e3705970a725c9dd1008fff97ccd7f1d250.tar.gz scummvm-rg350-ec524e3705970a725c9dd1008fff97ccd7f1d250.tar.bz2 scummvm-rg350-ec524e3705970a725c9dd1008fff97ccd7f1d250.zip |
Remove obsolete ANDROID_VERSION_GE macro
svn-id: r49505
-rw-r--r-- | backends/platform/android/android.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index a6258df554..f319e220cc 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -31,10 +31,6 @@ #if defined(ANDROID_BACKEND) -#define ANDROID_VERSION_GE(major,minor) \ - (ANDROID_MAJOR_VERSION > (major) || \ - (ANDROID_MAJOR_VERSION == (major) && ANDROID_MINOR_VERSION >= (minor))) - #include <jni.h> #include <string.h> |