From 69decac4065847ee5384ed68cc70c2d68bc3ddb4 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 21 Mar 2009 22:22:00 +0000 Subject: (svn r15791) -Codechange: remove the *RightAligned part of the old text drawing API. --- src/graph_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graph_gui.cpp') diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp index 3429fb409..1d32f1f5c 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -248,7 +248,7 @@ protected: for (int i = 0; i < GRAPH_NUM_LINES_Y; i++) { SetDParam(0, this->format_str_y_axis); SetDParam(1, y_label); - DrawStringRightAligned(x, y, STR_0170, graph_axis_label_colour); + DrawString(x - GRAPH_X_POSITION_BEGINNING, x, y, STR_0170, graph_axis_label_colour, SA_RIGHT); y_label -= y_label_separation; y += (this->gd_height / (GRAPH_NUM_LINES_Y - 1)); @@ -982,7 +982,7 @@ public: /* Draw the score */ SetDParam(0, score); - DrawStringRightAligned(107, y, STR_PERFORMANCE_DETAIL_INT, TC_FROMSTRING); + DrawString(0, 107, y, STR_PERFORMANCE_DETAIL_INT, TC_FROMSTRING, SA_RIGHT); /* Calculate the %-bar */ x = Clamp(val, 0, needed) * 50 / needed; -- cgit v1.2.3-54-g00ecf