X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/c3204d6e6acd9b0ad11f51e3b9107394c552eb52..951317fbfb58871a37d63cee6de1498bcfb63e6a:/AaptAssets.cpp diff --git a/AaptAssets.cpp b/AaptAssets.cpp index 438a670..5b71adc 100644 --- a/AaptAssets.cpp +++ b/AaptAssets.cpp @@ -995,12 +995,12 @@ bool AaptGroupEntry::getLayoutDirectionName(const char* name, ResTable_config* o (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) | ResTable_config::LAYOUTDIR_ANY; return true; - } else if (strcmp(name, "ltr") == 0) { + } else if (strcmp(name, "ldltr") == 0) { if (out) out->screenLayout = (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) | ResTable_config::LAYOUTDIR_LTR; return true; - } else if (strcmp(name, "rtl") == 0) { + } else if (strcmp(name, "ldrtl") == 0) { if (out) out->screenLayout = (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) | ResTable_config::LAYOUTDIR_RTL;