mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55:33 +00:00
Merge pull request #648 from keymanapp/developer-report-version-in-decimal
Report version assigned in decimal, not hexadecimal
This commit is contained in:
commit
b752ec8449
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ BOOL CheckKeyboardFinalVersion(PFILE_KEYBOARD fk) {
|
|||
fk->version = VERSION_60; // minimum version that we can be safe with
|
||||
}
|
||||
|
||||
wsprintf(buf, "The compiler has assigned a minimum engine version of %x.%x based on features used in this keyboard", (fk->version & 0xFF00) >> 8, fk->version & 0xFF);
|
||||
wsprintf(buf, "The compiler has assigned a minimum engine version of %d.%d based on features used in this keyboard", (fk->version & 0xFF00) >> 8, fk->version & 0xFF);
|
||||
AddCompileString(buf);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue