DolphinQt: Restrict size of banner image in game properties info tab.

This commit is contained in:
Jordan Woyak
2024-10-11 22:56:33 -05:00
parent d6e10e586a
commit 23ba1c9133
3 changed files with 9 additions and 5 deletions

View File

@ -13,6 +13,9 @@ namespace DiscIO
class WiiSaveBanner
{
public:
static constexpr u32 BANNER_WIDTH = 192;
static constexpr u32 BANNER_HEIGHT = 64;
explicit WiiSaveBanner(u64 title_id);
explicit WiiSaveBanner(const std::string& path);