diff --git a/arm9/source/helpwnd.cpp b/arm9/source/helpwnd.cpp index 480ac37..1a37a53 100644 --- a/arm9/source/helpwnd.cpp +++ b/arm9/source/helpwnd.cpp @@ -47,8 +47,8 @@ cHelpWnd::cHelpWnd(s32 x, s32 y, u32 w, u32 h, cWindow* parent, const std::strin // u8 nandDriverVer = getNandDriverVer(); _helpText += '\n'; - _helpText += formatString("wood akmenu %s.%s ", AKMENU_VERSION_MAIN, AKMENU_VERSION_SUB); - _helpText += formatString("\nfont: %dk", font().FontRAM() / 1024); + _helpText += formatString("LHS akmenu %s.%s ", AKMENU_VERSION_MAIN, AKMENU_VERSION_SUB); + _helpText += formatString("\n%s %s ", AKMENU_LOADER_NAME, AKMENU_LOADER_VERSION); } cHelpWnd::~cHelpWnd() {} diff --git a/arm9/source/version.h b/arm9/source/version.h index 09b497b..9b96b23 100644 --- a/arm9/source/version.h +++ b/arm9/source/version.h @@ -9,3 +9,18 @@ #define AKMENU_VERSION_MAIN "1" #define AKMENU_VERSION_SUB "25" + +#ifndef __KERNEL_LAUNCHER_SUPPORT__ +#define AKMENU_LOADER_NAME "nds-bootstrap" +#define AKMENU_LOADER_VERSION "" +#else // __KERNEL_LAUNCHER_SUPPORT__ + +// Loader versions - may not be accurate +#if defined(__AKLOADER_AK2__) +#define AKMENU_LOADER_NAME "BL2CK" +#define AKMENU_LOADER_VERSION "1.31.0" +#else // fallback for acekard +#define AKMENU_LOADER_NAME "wood" +#define AKMENU_LOADER_VERSION "1.62" +#endif // __AKLOADER_AK2__ +#endif // __KERNEL_LAUNCHER_SUPPORT__