From 8f91aa7a6ca733738a3ed10707080eea4f812de7 Mon Sep 17 00:00:00 2001 From: alpina0707 Date: Thu, 10 Feb 2022 22:12:46 +0100 Subject: [PATCH] Bugfix for BRInfoByTime --- src/main/java/device/radioPlayer/RadioPlayer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/device/radioPlayer/RadioPlayer.java b/src/main/java/device/radioPlayer/RadioPlayer.java index 25aba84..e32a3d7 100644 --- a/src/main/java/device/radioPlayer/RadioPlayer.java +++ b/src/main/java/device/radioPlayer/RadioPlayer.java @@ -40,7 +40,7 @@ public class RadioPlayer implements Device { else if (x >= 13 && x < 16) return BR3Info[3]; else if (x >= 16 && x < 19) return BR3Info[4]; else if (x >= 19 && x < 21) return BR3Info[5]; - else if (x >= 22 && x <= 23) return BR3Info[6]; + else if (x >= 21 && x < 24) return BR3Info[6]; else return BR3Info[7]; }