From c1c799117e7076046182e12d71d06e2c9444e9be Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Tue, 8 Nov 2011 10:26:04 +0100 Subject: changed all wstring/wchar_t to string/char --- src/base/lyric_word.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/base/lyric_word.cpp') diff --git a/src/base/lyric_word.cpp b/src/base/lyric_word.cpp index 979d02a9..c6c5d7d9 100644 --- a/src/base/lyric_word.cpp +++ b/src/base/lyric_word.cpp @@ -28,20 +28,20 @@ namespace usdx { - LyricWord::LyricWord(const wchar_t type, + LyricWord::LyricWord(const char type, const int beat, const int length, const int height, - const std::wstring& lyric) : + const std::string& lyric) : beat(beat), length(length), height(height), text(lyric) { - if (type == L':') { + if (type == ':') { this->type = nt_normal; } - else if (type == L'*') { + else if (type == '*') { this->type = nt_golden; } - else if (type == L'F') { + else if (type == 'F') { this->type = nt_freestyle; } } -- cgit v1.2.3