diff options
-rw-r--r-- | media/icon-flat-120x120.png | bin | 0 -> 14048 bytes | |||
-rw-r--r-- | media/icon-flat-256x256.png | bin | 0 -> 34342 bytes | |||
-rw-r--r-- | xbmc/network/upnp/UPnPRenderer.cpp | 4 | ||||
-rw-r--r-- | xbmc/network/upnp/UPnPServer.cpp | 4 |
4 files changed, 4 insertions, 4 deletions
diff --git a/media/icon-flat-120x120.png b/media/icon-flat-120x120.png Binary files differnew file mode 100644 index 0000000000..6e91740e6e --- /dev/null +++ b/media/icon-flat-120x120.png diff --git a/media/icon-flat-256x256.png b/media/icon-flat-256x256.png Binary files differnew file mode 100644 index 0000000000..db04822a6f --- /dev/null +++ b/media/icon-flat-256x256.png diff --git a/xbmc/network/upnp/UPnPRenderer.cpp b/xbmc/network/upnp/UPnPRenderer.cpp index d0fe43377b..e81e8ee163 100644 --- a/xbmc/network/upnp/UPnPRenderer.cpp +++ b/xbmc/network/upnp/UPnPRenderer.cpp @@ -325,10 +325,10 @@ CUPnPRenderer::SetupIcons() { NPT_String file_root = CSpecialProtocol::TranslatePath("special://xbmc/media/").c_str(); AddIcon( - PLT_DeviceIcon("image/png", 256, 256, 32, "/icon.png"), + PLT_DeviceIcon("image/png", 256, 256, 24, "/icon-flat-256x256.png"), file_root); AddIcon( - PLT_DeviceIcon("image/png", 32, 32, 32, "/icon32x32.png"), + PLT_DeviceIcon("image/png", 120, 120, 24, "/icon-flat-120x120.png"), file_root); return NPT_SUCCESS; } diff --git a/xbmc/network/upnp/UPnPServer.cpp b/xbmc/network/upnp/UPnPServer.cpp index 0780bcd507..90449af2a6 100644 --- a/xbmc/network/upnp/UPnPServer.cpp +++ b/xbmc/network/upnp/UPnPServer.cpp @@ -174,10 +174,10 @@ CUPnPServer::SetupIcons() { NPT_String file_root = CSpecialProtocol::TranslatePath("special://xbmc/media/").c_str(); AddIcon( - PLT_DeviceIcon("image/png", 256, 256, 32, "/icon.png"), + PLT_DeviceIcon("image/png", 256, 256, 24, "/icon-flat-256x256.png"), file_root); AddIcon( - PLT_DeviceIcon("image/png", 32, 32, 32, "/icon32x32.png"), + PLT_DeviceIcon("image/png", 120, 120, 24, "/icon-flat-120x120.png"), file_root); return NPT_SUCCESS; } |