|
From: Markus R. <god...@us...> - 2009-07-29 15:35:14
|
Module: performous Branch: master Commit: 761ca1ed6cf6c38700d705cda92bc14bf24001e3 Author: Markus Raab <un...@ma...> Date: Thu Jul 23 17:10:36 2009 +0200 utf8 converting --- game/highscore.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/game/highscore.cc b/game/highscore.cc index ef74176..559aab2 100644 --- a/game/highscore.cc +++ b/game/highscore.cc @@ -34,7 +34,7 @@ void HighScore::load() std::stringstream ss; ss.write(&data[0], size); - // XXX convertToUTF8(ss, m_path + m_filename); + convertToUTF8(ss, m_path + m_filename); // now parse line by line and build up highscore std::string str; |