logo_alphax.png bugfix
This commit is contained in:
parent
697f799b9e
commit
e397e0fc39
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20230220;
|
||||
public static final int CONSOLE_VERSION = 20230227;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
|
@ -261,9 +261,9 @@ public class StartupFrame {
|
|||
// these should be about 213px wide
|
||||
if (bundle.contains("proteus")) {
|
||||
logoName = LOGO_PATH + "logo_proteus.png";
|
||||
} else if (bundle.contains("_alphax")) {
|
||||
} else if (bundle.contains("alphax")) {
|
||||
logoName = LOGO_PATH + "logo_alphax.png";
|
||||
} else if (bundle.contains("_mre")) {
|
||||
} else if (bundle.contains(".mre")) {
|
||||
logoName = LOGO_PATH + "logo_mre.png";
|
||||
} else {
|
||||
logoName = LOGO;
|
||||
|
|
Loading…
Reference in New Issue