[bootloade] Fix freezing

This commit is contained in:
devdl11
2022-04-09 11:08:02 +02:00
parent eeff886cc1
commit add333b920
2 changed files with 4 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ bool slotB_submenu() {
}
bool installer_submenu() {
return false;
}
bool about_submenu() {

View File

@@ -2,10 +2,11 @@
#define _BOOTLOADER_ITOA_H_
namespace Bootloader {
namespace Utility {
class Utility {
public:
static char * itoa(int value, char * result, int base);
static int versionSum(const char * version, int length);
}
};
}
#endif