mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
- 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:
parent
5391a576c0
commit
477a9c4dd4
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user