Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
refactor: move whole speeds array to new class (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogadana authored Jun 25, 2022
1 parent 773357d commit a2bb4a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

/* 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;
Expand Down

0 comments on commit a2bb4a5

Please sign in to comment.