summaryrefslogtreecommitdiffstats
path: root/vr_ui.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-07-02 04:47:16 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-07-02 04:47:16 +0200
commitc24d97fafa8f0530b3c5da74228d62e0d9033761 (patch)
tree82ee71b08bd23edc9cffd6c6e88a8cef96e2f82f /vr_ui.cpp
parentMerge "screen_ui: Compute the top and bottom gaps." (diff)
parentMerge "Update ScreenRecoveryUI::Draw* function signatures." (diff)
downloadandroid_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar.gz
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar.bz2
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar.lz
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar.xz
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.tar.zst
android_bootable_recovery-c24d97fafa8f0530b3c5da74228d62e0d9033761.zip
Diffstat (limited to 'vr_ui.cpp')
-rw-r--r--vr_ui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vr_ui.cpp b/vr_ui.cpp
index 8b8261e35..125167268 100644
--- a/vr_ui.cpp
+++ b/vr_ui.cpp
@@ -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;
}