summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-11-14 15:37:33 +0000
committerrubidium <rubidium@openttd.org>2009-11-14 15:37:33 +0000
commit16c2e53191f0d6bc303a87651eb5bac8ed06dac5 (patch)
treed75b7ac8cb46a8b9c13b4aea8a1a051359ab4d36 /src/graph_gui.cpp
parent668a98909bd4602c2de2ac6fb8e8e46b6be4c44c (diff)
downloadopenttd-16c2e53191f0d6bc303a87651eb5bac8ed06dac5.tar.xz
(svn r18078) -Codechange: remove some duplicate (non translatable) strings
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index f52b64e01..f5e0f068a 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -1084,7 +1084,7 @@ struct PerformanceRatingDetailWindow : Window {
/* Draw the score */
SetDParam(0, score);
- DrawString(7, 107, r.top + 6, STR_PERFORMANCE_DETAIL_INT, TC_FROMSTRING, SA_RIGHT);
+ DrawString(7, 107, r.top + 6, STR_BLACK_INT, TC_FROMSTRING, SA_RIGHT);
/* Calculate the %-bar */
byte x = Clamp(val, 0, needed) * 50 / needed;