OSDN Git Service

AAPT: Use the right enum when checking for density configurations
authorAdam Lesinski <adamlesinski@google.com>
Fri, 23 Jan 2015 02:19:44 +0000 (18:19 -0800)
committerAdam Lesinski <adamlesinski@google.com>
Fri, 23 Jan 2015 02:19:44 +0000 (18:19 -0800)
Bug:19116675
Change-Id: I2322d8d6bdf890005c80014273e5d07df735ed50

tools/aapt/AaptConfig.cpp

index e88c27a..ede9e99 100644 (file)
@@ -796,7 +796,7 @@ bool isSameExcept(const ResTable_config& a, const ResTable_config& b, int axisMa
 }
 
 bool isDensityOnly(const ResTable_config& config) {
-    if (config.density == ResTable_config::DENSITY_NONE) {
+    if (config.density == ResTable_config::DENSITY_DEFAULT) {
         return false;
     }