refactor: move whole speeds array to new class (#22)

This commit is contained in:
bogadana 2022-06-25 15:15:59 +02:00 committed by GitHub
parent 773357d6e6
commit a2bb4a5f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -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();

View File

@ -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;