diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-01-22 18:19:44 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2015-01-22 18:19:44 -0800 |
commit | ed643e81827797bd22069bf4283348d49fded891 (patch) | |
tree | 895fa4cb89e68f0a4a5e6a9c992651de4be297df /tools/aapt/AaptConfig.cpp | |
parent | aee7225e34376a90e8c25e5df53604085cc1b712 (diff) |
AAPT: Use the right enum when checking for density configurations
Bug:19116675
Change-Id: I2322d8d6bdf890005c80014273e5d07df735ed50
Diffstat (limited to 'tools/aapt/AaptConfig.cpp')
-rw-r--r-- | tools/aapt/AaptConfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/AaptConfig.cpp b/tools/aapt/AaptConfig.cpp index e88c27a1b528..ede9e995b73a 100644 --- a/tools/aapt/AaptConfig.cpp +++ b/tools/aapt/AaptConfig.cpp @@ -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; } |