diff --git a/data/images/wiimote1.png b/data/images/wiimote1.png index 1d9c74a8..74192fb6 100644 Binary files a/data/images/wiimote1.png and b/data/images/wiimote1.png differ diff --git a/data/images/wiimote2.png b/data/images/wiimote2.png index a3969061..00978c8b 100644 Binary files a/data/images/wiimote2.png and b/data/images/wiimote2.png differ diff --git a/data/images/wiimote3.png b/data/images/wiimote3.png index f525195e..42d66077 100644 Binary files a/data/images/wiimote3.png and b/data/images/wiimote3.png differ diff --git a/data/images/wiimote4.png b/data/images/wiimote4.png index 6fe9a6ab..bd3e0615 100644 Binary files a/data/images/wiimote4.png and b/data/images/wiimote4.png differ diff --git a/data/images/wiimote6.png b/data/images/wiimote6.png index 58a5e5bc..a5844615 100644 Binary files a/data/images/wiimote6.png and b/data/images/wiimote6.png differ diff --git a/data/images/wiimote8.png b/data/images/wiimote8.png index d748c523..9ec3927d 100644 Binary files a/data/images/wiimote8.png and b/data/images/wiimote8.png differ diff --git a/source/menu/menu_download.cpp b/source/menu/menu_download.cpp index 452d1f60..2bfe91ce 100644 --- a/source/menu/menu_download.cpp +++ b/source/menu/menu_download.cpp @@ -25,6 +25,7 @@ #define TITLES_URL "http://www.gametdb.com/titles.txt?LANG=%s" #define GAMETDB_URL "http://www.gametdb.com/wiitdb.zip?LANG=%s&FALLBACK=TRUE&WIIWARE=TRUE&GAMECUBE=TRUE" #define UPDATE_URL_VERSION "http://dl.dropbox.com/u/25620767/WiiflowMod/versions.txt" +#define CUSTOM_BANNER_URL "http://dl.dropboxusercontent.com/u/101209384/{gameid}.bnr" static const char FMT_BPIC_URL[] = "http://art.gametdb.com/{console}/coverfullHQ/{loc}/{gameid}.png"\ "|http://art.gametdb.com/{console}/coverfull/{loc}/{gameid}.png"; @@ -2119,13 +2120,13 @@ void CMenu::_downloadBnr(const char *gameID) { if(gameID == NULL || strlen(gameID) > 6) return; - string base_url = m_cfg.getString("GENERAL", "custom_banner_url", " "); + string base_url = m_cfg.getString("GENERAL", "custom_banner_url", CUSTOM_BANNER_URL); if(base_url.size() < 3 || base_url.find(GAME_BNR_ID) == string::npos) return; base_url.replace(base_url.find(GAME_BNR_ID), strlen(GAME_BNR_ID), gameID); banner_url = base_url.c_str(); - string base_url_id3 = m_cfg.getString("GENERAL", "custom_banner_url", " "); + string base_url_id3 = m_cfg.getString("GENERAL", "custom_banner_url", CUSTOM_BANNER_URL); base_url_id3.replace(base_url_id3.find(GAME_BNR_ID), strlen(GAME_BNR_ID), gameID, 3); banner_url_id3 = base_url_id3.c_str();