Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-07-11 22:08:57 +0000
committerStijn Buys <ingar@osirion.org>2011-07-11 22:08:57 +0000
commit59a96329f88cc4c3a3abfd2c996d83c058231690 (patch)
tree4771329ae5f4b9f73e487c894067347b1a476c51 /src/game/base/racetrack.cc
parent57d83f1a4baa1ffb40dc43466b2cb34b5a3405ce (diff)
Corrected a typo in the racetrack messages.
Diffstat (limited to 'src/game/base/racetrack.cc')
-rw-r--r--src/game/base/racetrack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/racetrack.cc b/src/game/base/racetrack.cc
index 51d6e7f..8d63552 100644
--- a/src/game/base/racetrack.cc
+++ b/src/game/base/racetrack.cc
@@ -202,7 +202,7 @@ void RaceTrack::frame(const unsigned long elapsed)
const bool new_record = ((track_record > 0.0f) && (player_time > 0.0f) && (player_time < track_record));
std::stringstream msgstr;
- msgstr << "^B" << player->name() << "completed the race in " << player_time << " seconds";
+ msgstr << "^B" << player->name() << " ^Bcompleted the race in " << player_time << " seconds";
if (new_record) {
msgstr << ", a new record!";