mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Add WiiSaveBanner class
This class is similar to the BannerLoaderWii class that was
removed in ee694e32
.
This commit is contained in:
@ -29,6 +29,7 @@
|
||||
#include "DiscIO/FileSystemGCWii.h"
|
||||
#include "DiscIO/Filesystem.h"
|
||||
#include "DiscIO/Volume.h"
|
||||
#include "DiscIO/WiiSaveBanner.h"
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
@ -316,7 +317,7 @@ std::vector<u32> VolumeWii::GetBanner(int* width, int* height) const
|
||||
if (!title_id)
|
||||
return std::vector<u32>();
|
||||
|
||||
return GetWiiBanner(width, height, *title_id);
|
||||
return WiiSaveBanner(*title_id).GetBanner(width, height);
|
||||
}
|
||||
|
||||
std::string VolumeWii::GetApploaderDate(const Partition& partition) const
|
||||
|
Reference in New Issue
Block a user