Skip to content

Commit

Permalink
- Fix uninitialised BBA on info screen appearing as "Not Present"
Browse files Browse the repository at this point in the history
  • Loading branch information
emukidid committed Aug 8, 2017
1 parent 03a3f40 commit 8a74f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cube/swiss/source/gui/info.c
Expand Up @@ -99,7 +99,7 @@ void info_draw_page(int page_num) {
}
else if(page_num == 1) {
WriteFont(30, 65, "Device Info (2/3):");
sprintf(topStr,"BBA: %s", bba_exists ? "Installed":"Not Present");
sprintf(topStr,"BBA: %s", exi_bba_exists() ? "Installed":"Not Present");
WriteFont(30, 110, topStr);
if(exi_bba_exists()) {
sprintf(topStr,"IP: %s", net_initialized ? bba_ip:"Not Available");
Expand Down

0 comments on commit 8a74f74

Please sign in to comment.