summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-12 15:17:10 +0000
committerrubidium <rubidium@openttd.org>2009-02-12 15:17:10 +0000
commit9fb19be1340cc5e233d34115d3053395f1b48fc9 (patch)
tree148d6574ae9868a4d1765bf53c6b958c2ab81607 /src/graph_gui.cpp
parent0a673d870b8a8bab48c60bfa73ca2b613c070a46 (diff)
downloadopenttd-9fb19be1340cc5e233d34115d3053395f1b48fc9.tar.xz
(svn r15457) -Fix: typo in stringid.
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 35472fee3..aeb75668f 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -982,7 +982,7 @@ public:
/* Draw the score */
SetDParam(0, score);
- DrawStringRightAligned(107, y, SET_PERFORMANCE_DETAIL_INT, TC_FROMSTRING);
+ DrawStringRightAligned(107, y, STR_PERFORMANCE_DETAIL_INT, TC_FROMSTRING);
/* Calculate the %-bar */
x = Clamp(val, 0, needed) * 50 / needed;