aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-04 13:41:32 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:47 +0100
commitd8e80ce96801510fde0a256d92dc5fac8adfe22c (patch)
treee167e1e4dcbccab111327b4748ef5140640852f6 /src/base/song.cpp
parent1feb5dd5ceb44e2647abc52a13d05f62bf4c903c (diff)
downloadusdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.tar.gz
usdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.tar.xz
usdx-d8e80ce96801510fde0a256d92dc5fac8adfe22c.zip
renamed Song::cover to Song::cover_file and added Texture* Song::cover
Diffstat (limited to 'src/base/song.cpp')
-rw-r--r--src/base/song.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/song.cpp b/src/base/song.cpp
index 959102c2..9b0cbf12 100644
--- a/src/base/song.cpp
+++ b/src/base/song.cpp
@@ -51,7 +51,7 @@ namespace usdx
bpm.push_back(new BPM(get_header_tag_float(L"BPM", true)));
gap = get_header_tag_float(L"GAP");
- cover = get_header_tag(L"COVER");
+ cover_file = get_header_tag(L"COVER");
background = get_header_tag(L"BACKGROUND");
video = get_header_tag(L"VIDEO");
@@ -226,9 +226,9 @@ namespace usdx
return gap;
}
- const std::wstring& Song::get_cover(void) const
+ const std::wstring& Song::get_cover_file(void) const
{
- return cover;
+ return cover_file;
}
const std::wstring& Song::get_background(void) const