aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/util/lua/lvm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/util/lua/lvm.cpp')
-rw-r--r--engines/sword25/util/lua/lvm.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/sword25/util/lua/lvm.cpp b/engines/sword25/util/lua/lvm.cpp
index aee31064ff..ae70fe2645 100644
--- a/engines/sword25/util/lua/lvm.cpp
+++ b/engines/sword25/util/lua/lvm.cpp
@@ -202,14 +202,7 @@ static int l_strcmp (const TString *ls, const TString *rs) {
const char *r = getstr(rs);
size_t lr = rs->tsv.len;
for (;;) {
-#if defined(__ANDROID__)
- // Android is missing strcoll().
- // For more information, refer to:
- // http://www.damonkohler.com/2008/12/lua-on-android.html
- int temp = strcmp(l, r);
-#else
int temp = strcoll(l, r);
-#endif
if (temp != 0) return temp;
else { /* strings are equal up to a `\0' */
size_t len = strlen(l); /* index of first `\0' in both strings */