diff --git a/init/init_apq8084.c b/init/init_apq8084.c index b832ccf2..0b579aa4 100644 --- a/init/init_apq8084.c +++ b/init/init_apq8084.c @@ -49,13 +49,13 @@ void init_msm_properties(unsigned long msm_id, unsigned long msm_ver, char *boar return; if (ISMATCH(board_type, "Liquid")) { - property_set(PROP_LCDDENSITY, "293"); + property_set(PROP_LCDDENSITY, "320"); /* Liquid do not have hardware navigation keys, so enable Android sw navigation bar */ property_set(PROP_QEMU_NAVKEY, "0"); } else { - property_set(PROP_LCDDENSITY, "440"); + property_set(PROP_LCDDENSITY, "480"); } } diff --git a/rootdir/etc/init.qcom.early_boot.sh b/rootdir/etc/init.qcom.early_boot.sh index a2c63c16..07f67769 100755 --- a/rootdir/etc/init.qcom.early_boot.sh +++ b/rootdir/etc/init.qcom.early_boot.sh @@ -150,13 +150,13 @@ case "$1" in "apq8084") case "$soc_hwplatform" in "Liquid") - setprop ro.sf.lcd_density 293 + setprop ro.sf.lcd_density 320 # Liquid do not have hardware navigation keys, so enable # Android sw navigation bar setprop ro.hw.nav_keys 0 ;; *) - setprop ro.sf.lcd_density 440 + setprop ro.sf.lcd_density 480 ;; esac ;;