diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-16 14:40:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-16 14:40:44 +0000 |
commit | d465fbfa8ead75af60f9fcdf936a13c3a4cc11a8 (patch) | |
tree | 4411e3bbba80ba5803d1e529aca068a1a1a0b44b /src/core/stdchat | |
parent | 8d31a25ef20056ea6cb1bd71619f23c7ffe36b6b (diff) |
damned magic
git-svn-id: http://svn.miranda-ng.org/main/trunk@11464 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdchat')
-rw-r--r-- | src/core/stdchat/src/tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdchat/src/tools.cpp b/src/core/stdchat/src/tools.cpp index 4c42a46dfc..38301b960b 100644 --- a/src/core/stdchat/src/tools.cpp +++ b/src/core/stdchat/src/tools.cpp @@ -33,7 +33,7 @@ bool LoadMessageFont(LOGFONT *lf, COLORREF *colour) }
if (lf) {
mir_snprintf(str, SIZEOF(str), "SRMFont%dSize", i);
- lf->lfHeight = db_get_b(NULL, "SRMM", str, -12);
+ lf->lfHeight = (char)db_get_b(NULL, "SRMM", str, -12);
lf->lfWidth = 0;
lf->lfEscapement = 0;
lf->lfOrientation = 0;
|