refactor(custom-playback-speed): empty initial value for videoSpeeds field

This commit is contained in:
oSumAtrIX 2022-09-22 07:19:03 +02:00
parent 8feeb323ba
commit b97c6005f0
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -12,7 +12,7 @@ import app.revanced.integrations.utils.ReVancedUtils;
public class VideoSpeedPatch {
public static final float[] videoSpeeds = {0.25f, 0.5f, 0.75f, 1.0f, 1.25f, 1.5f, 1.75f, 2.0f, 3.0f, 4.0f, 5.0f};
public static final float[] videoSpeeds = { 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) {