diff options
-rw-r--r-- | src/core/stdhelp/about.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/stdhelp/about.cpp b/src/core/stdhelp/about.cpp index d0ae6ee7f1..e78912344c 100644 --- a/src/core/stdhelp/about.cpp +++ b/src/core/stdhelp/about.cpp @@ -45,6 +45,9 @@ INT_PTR CALLBACK DlgProcAbout(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar mir_free(pVerInfo);
}
{
+ char productVersion[56];
+ CallService(MS_SYSTEM_GETVERSIONTEXT, SIZEOF(productVersion), (LPARAM)productVersion);
+
TCHAR str[64];
mir_sntprintf(str, SIZEOF(str), _T(STR_VERSION_FORMAT), TranslateT("v"), productVersion);
|