logo_alphax.png bugfix

This commit is contained in:
rusefillc 2023-02-27 11:37:55 -05:00
parent 697f799b9e
commit e397e0fc39
2 changed files with 3 additions and 3 deletions

View File

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

View File

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