diff --git a/bootanimation/Android.mk b/bootanimation/Android.mk index ffe6701be260a3badd4b69113577658800c0c943..3d96fcdfe48781af1a1e1bbceb1109e9e64db2c8 100644 --- a/bootanimation/Android.mk +++ b/bootanimation/Android.mk @@ -17,8 +17,10 @@ ifeq ($(TARGET_USES_MURENA_BOOTANIMATION),true) BOOTANIMATION_TAR = bootanimation_murena.tar +BOOTANIMATION_FPS := 30 else BOOTANIMATION_TAR = bootanimation.tar +BOOTANIMATION_FPS := 60 endif TARGET_GENERATED_BOOTANIMATION := $(TARGET_OUT_INTERMEDIATES)/BOOTANIMATION/bootanimation.zip @@ -52,7 +54,8 @@ $(TARGET_GENERATED_BOOTANIMATION): $(SOONG_ZIP) mkdir -p $(INTERMEDIATES)/part$$part_cnt; \ done; \ prebuilts/tools-lineage/${HOST_OS}-x86/bin/mogrify -resize $$RESOLUTION -colors 250 $(INTERMEDIATES)/*/*.png; \ - echo "$$IMAGESCALEWIDTH $$IMAGESCALEHEIGHT 60" > $(INTERMEDIATES)/desc.txt; \ + BOOTANIMFPS=$(BOOTANIMATION_FPS); \ + echo "$$IMAGESCALEWIDTH $$IMAGESCALEHEIGHT $$BOOTANIMFPS" > $(INTERMEDIATES)/desc.txt; \ cat vendor/lineage/bootanimation/desc.txt >> $(INTERMEDIATES)/desc.txt $(hide) $(SOONG_ZIP) -L 0 -o $(TARGET_GENERATED_BOOTANIMATION) -C $(INTERMEDIATES) -D $(INTERMEDIATES) diff --git a/bootanimation/bootanimation_murena.tar b/bootanimation/bootanimation_murena.tar index 0d2c2cefe7e4f93fe4263f0a09e5587492d6ec05..870d9a31e9a7aefa28a010fc4a6da43a6cd0b2c2 100644 Binary files a/bootanimation/bootanimation_murena.tar and b/bootanimation/bootanimation_murena.tar differ