summaryrefslogtreecommitdiffstats
path: root/vr_ui.cpp
diff options
context:
space:
mode:
authorandroid-build-prod (mdb) <android-build-team-robot@google.com>2018-05-03 04:21:02 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-05-03 04:21:02 +0200
commit01118c1cd819a58a32de021013cdae5ba3f86939 (patch)
treea2bdd46211f25b98161406966391bc96633b335a /vr_ui.cpp
parentMerge "screen_ui: Drop the dependency on common.h." am: 738a4258d8 (diff)
parentMerge "screen_ui: Use std::string in DrawTextLine() and siblings." (diff)
downloadandroid_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar.gz
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar.bz2
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar.lz
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar.xz
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.tar.zst
android_bootable_recovery-01118c1cd819a58a32de021013cdae5ba3f86939.zip
Diffstat (limited to '')
-rw-r--r--vr_ui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/vr_ui.cpp b/vr_ui.cpp
index a58c99efd..b1ef646c9 100644
--- a/vr_ui.cpp
+++ b/vr_ui.cpp
@@ -39,9 +39,9 @@ void VrRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const {
gr_texticon(x - kStereoOffset + ScreenWidth(), y, surface);
}
-int VrRecoveryUI::DrawTextLine(int x, int y, const char* line, bool bold) const {
- gr_text(gr_sys_font(), x + kStereoOffset, y, line, bold);
- gr_text(gr_sys_font(), x - kStereoOffset + ScreenWidth(), y, line, bold);
+int VrRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const {
+ gr_text(gr_sys_font(), x + kStereoOffset, y, line.c_str(), bold);
+ gr_text(gr_sys_font(), x - kStereoOffset + ScreenWidth(), y, line.c_str(), bold);
return char_height_ + 4;
}