fix(custom-playback-speed): fill array to generate required instructions (#155)

This commit is contained in:
bogadana 2022-09-23 12:53:22 +02:00 committed by GitHub
parent f1e9aa30ba
commit 868e99a619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import app.revanced.integrations.utils.ReVancedUtils;
public class VideoSpeedPatch {
public static final float[] videoSpeeds = { 0 }; // Values are useless as they are being overridden by the respective patch
public static final float[] videoSpeeds = { 0, 0 }; // Values are useless as they are being overridden by the respective patch
private static Boolean userChangedSpeed = false;
public static int getDefaultSpeed(Object[] speeds, int speed, Object qInterface) {