mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-01-20 16:57:32 +01:00
refactor: move whole speeds array to new class (#22)
This commit is contained in:
parent
773357d6e6
commit
a2bb4a5f03
@ -36,7 +36,6 @@ public class Settings {
|
||||
public static Boolean userChangedSpeed = false;
|
||||
public static Boolean newVideo = false;
|
||||
public static Boolean newVideoSpeed = false;
|
||||
public static float[] videoSpeeds = { 0.25f, 0.5f, 0.75f, 1.0f, 1.25f, 1.5f, 2f, 3f, 4f, 5f };
|
||||
|
||||
public static String getManufacturer() {
|
||||
String manufacturer = SettingsEnum.MANUFACTURER_OVERRIDE_STRING.getString();
|
||||
|
@ -13,7 +13,7 @@ import java.util.Iterator;
|
||||
|
||||
/* loaded from: classes6.dex */
|
||||
public class VideoSpeed {
|
||||
static final float[] videoSpeeds = {0.25f, 0.5f, 0.75f, 1.0f, 1.25f, 1.5f, 1.75f, 2.0f};
|
||||
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 int DefaultSpeed(Object[] speeds, int speed, Object qInterface) {
|
||||
int speed2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user