- This topic has 0 replies, 1 voice, and was last updated 1 year, 2 months ago by .
Viewing 0 reply threads
Viewing 0 reply threads
- You must be logged in to reply to this topic.
Hi,
It looks like there is a bug in kbmMWGlobal’s kbmMWGetFileVersionInfo function.
Current code 5.23.00:
ADebug:=(FI.dwFileFlags and VS_FF_PRERELEASE)=VS_FF_DEBUG;
ASpecialBuild:=(FI.dwFileFlags and VS_FF_PRERELEASE)=VS_FF_SPECIALBUILD;
APrivateBuild:=(FI.dwFileFlags and VS_FF_PRERELEASE)=VS_FF_PRIVATEBUILD;
It should be something like this:
ADebug:=(FI.dwFileFlags and VS_FF_DEBUG)=VS_FF_DEBUG;
ASpecialBuild:=(FI.dwFileFlags and VS_FF_SPECIALBUILD)=VS_FF_SPECIALBUILD;
APrivateBuild:=(FI.dwFileFlags and VS_FF_PRIVATEBUILD)=VS_FF_PRIVATEBUILD;
Kind regards,
Luigi