Skip to content

Commit

Permalink
fix(custom-playback-speed): fill array to generate required instructi…
Browse files Browse the repository at this point in the history
…ons (ReVanced#155)
  • Loading branch information
bogadana committed Sep 23, 2022
1 parent f1e9aa3 commit 868e99a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

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) {
Expand Down

0 comments on commit 868e99a

Please sign in to comment.