diff options
author | Vojtech Bocek <vbocek@gmail.com> | 2014-09-07 15:01:56 +0200 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2014-10-14 15:06:56 +0200 |
commit | 76ee903d84d5b477016fb6ed6bdee1a21e237903 (patch) | |
tree | b5e773d53ce727911db18ba12d1e96b690c78c54 /gui/text.cpp | |
parent | Fix exfat-fuse handling (diff) | |
download | android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar.gz android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar.bz2 android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar.lz android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar.xz android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.tar.zst android_bootable_recovery-76ee903d84d5b477016fb6ed6bdee1a21e237903.zip |
Diffstat (limited to 'gui/text.cpp')
-rw-r--r-- | gui/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/text.cpp b/gui/text.cpp index c594f4824..29d7ad948 100644 --- a/gui/text.cpp +++ b/gui/text.cpp @@ -97,7 +97,7 @@ GUIText::GUIText(xml_node<>* node) mLastValue = parseText(); if (mLastValue != mText) mIsStatic = 0; - gr_getFontDetails(mFont ? mFont->GetResource() : NULL, (unsigned*) &mFontHeight, NULL); + mFontHeight = gr_getMaxFontHeight(mFont ? mFont->GetResource() : NULL); return; } |