- fix for issue #49. wii flat front covers downloaded are stretched over front and back of box because of typo by me that saved them in the box covers folder instead of the front covers folder.

This commit is contained in:
Fledge68 2018-12-18 16:43:36 -06:00
parent 5391a576c0
commit 477a9c4dd4
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 3.3 MiB

View File

@ -1450,7 +1450,7 @@ int CMenu::_coverDownloader()
continue;
/*download succeeded - save png */
strncpy(path, fmt("%s/%s.png", m_boxPicDir.c_str(), coverID.c_str()), 255);
strncpy(path, fmt("%s/%s.png", m_picDir.c_str(), coverID.c_str()), 255);
update_pThread(1);
m_thrdMessage = wfmt(_fmt("dlmsg4", L"Saving %s"), path);
m_thrdMessageAdded = true;
@ -1586,7 +1586,7 @@ int CMenu::_coverDownloader()
continue;
/* save png */
strncpy(path, fmt("%s/%s.png", m_boxPicDir.c_str(), coverID.c_str()), 255);
strncpy(path, fmt("%s/%s.png", m_picDir.c_str(), coverID.c_str()), 255);
update_pThread(1);
m_thrdMessage = wfmt(_fmt("dlmsg4", L"Saving %s"), path);
m_thrdMessageAdded = true;