Skip to content

Commit

Permalink
fix(ui): Add missing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Sep 14, 2022
1 parent 2f1e1be commit b1bd58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biosdrain.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void LoadSystemInformation()
menu_status("- ROM0 exists? %s\n", g_hardwareInfo.ROMs[0].IsExists ? "Yes" : "No");
if (g_hardwareInfo.ROMs[0].IsExists)
{
menu_status("- ROM0 ADDR and SIZE: %08X %08X", g_hardwareInfo.ROMs[0].StartAddress, g_hardwareInfo.ROMs[0].size);
menu_status("- ROM0 ADDR and SIZE: %08X %08X\n", g_hardwareInfo.ROMs[0].StartAddress, g_hardwareInfo.ROMs[0].size);
}

menu_status("- DVD exists? %s\n", g_hardwareInfo.DVD_ROM.IsExists ? "Yes" : "No");
Expand Down

0 comments on commit b1bd58d

Please sign in to comment.