diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-07-02 04:42:46 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-02 04:42:46 +0200 |
commit | c8e338fa9c19e3a017a9641035279c23e5c57d8d (patch) | |
tree | 42bc24468b6d9ba025cf10d0ba1d855295cc8e3d /vr_ui.cpp | |
parent | Merge "screen_ui: Compute the top and bottom gaps." (diff) | |
parent | Update ScreenRecoveryUI::Draw* function signatures. (diff) | |
download | android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar.gz android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar.bz2 android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar.lz android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar.xz android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.tar.zst android_bootable_recovery-c8e338fa9c19e3a017a9641035279c23e5c57d8d.zip |
Diffstat (limited to 'vr_ui.cpp')
-rw-r--r-- | vr_ui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,9 +27,9 @@ bool VrRecoveryUI::InitTextParams() { return true; } -void VrRecoveryUI::DrawTextLine(int x, int* y, const char* line, bool bold) const { +int VrRecoveryUI::DrawTextLine(int x, int y, const char* line, bool bold) const { int mid_divide = gr_fb_width() / 2; - gr_text(gr_sys_font(), x + kStereoOffset, *y, line, bold); - gr_text(gr_sys_font(), x - kStereoOffset + mid_divide, *y, line, bold); - *y += char_height_ + 4; + gr_text(gr_sys_font(), x + kStereoOffset, y, line, bold); + gr_text(gr_sys_font(), x - kStereoOffset + mid_divide, y, line, bold); + return char_height_ + 4; } |