mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 07:49:21 +00:00
DiscIO: Fix extra tabs in the banner loader headers
This commit is contained in:
parent
91da031220
commit
d800b5fb74
3 changed files with 95 additions and 100 deletions
|
@ -17,23 +17,20 @@ class IVolume;
|
|||
|
||||
class IBannerLoader
|
||||
{
|
||||
public:
|
||||
public:
|
||||
IBannerLoader()
|
||||
{}
|
||||
|
||||
IBannerLoader()
|
||||
{}
|
||||
virtual ~IBannerLoader()
|
||||
{}
|
||||
|
||||
virtual bool IsValid() = 0;
|
||||
|
||||
virtual ~IBannerLoader()
|
||||
{}
|
||||
virtual std::vector<u32> GetBanner(int* pWidth, int* pHeight) = 0;
|
||||
|
||||
|
||||
virtual bool IsValid() = 0;
|
||||
|
||||
virtual std::vector<u32> GetBanner(int* pWidth, int* pHeight) = 0;
|
||||
|
||||
virtual std::vector<std::string> GetNames() = 0;
|
||||
virtual std::string GetCompany() = 0;
|
||||
virtual std::vector<std::string> GetDescriptions() = 0;
|
||||
virtual std::vector<std::string> GetNames() = 0;
|
||||
virtual std::string GetCompany() = 0;
|
||||
virtual std::vector<std::string> GetDescriptions() = 0;
|
||||
};
|
||||
|
||||
IBannerLoader* CreateBannerLoader(DiscIO::IFileSystem& _rFileSystem, DiscIO::IVolume *pVolume);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue