diff --git a/RetroFE/Source/Graphics/Component/ReloadableMedia.cpp b/RetroFE/Source/Graphics/Component/ReloadableMedia.cpp index 35500a2..4f15536 100644 --- a/RetroFE/Source/Graphics/Component/ReloadableMedia.cpp +++ b/RetroFE/Source/Graphics/Component/ReloadableMedia.cpp @@ -156,8 +156,16 @@ void ReloadableMedia::ReloadTexture() { std::string imagePath; Config.GetMediaPropertyAbsolutePath(GetCollectionName(), Type, imagePath); + ImageBuilder imageBuild; - LoadedComponent = imageBuild.CreateImage(imagePath, selectedItem->GetFullTitle(), ScaleX, ScaleY); + std::string imageBasename = selectedItem->GetFullTitle(); + + if(Utils::ToLower(imageBasename) == "manufacturer") + { + imageBasename = selectedItem->GetManufacturer(); + } + + LoadedComponent = imageBuild.CreateImage(imagePath, imageBasename, ScaleX, ScaleY); if (LoadedComponent != NULL) {