mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 03:35:59 +00:00
Display nicer version strings for the Wii Menu
The Tools > Load System Menu option displays the version of the installed Wii Menu. This commit changes the way we display that version, like so: "Load System Menu 514P" -> "Load System Menu 4.3E" The numbers are from http://wiibrew.org/wiki/System_Menu
This commit is contained in:
parent
47fe78a76a
commit
19d6092847
3 changed files with 62 additions and 4 deletions
|
@ -4,6 +4,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace DiscIO
|
||||
|
@ -71,5 +73,6 @@ Region RegionSwitchGC(u8 country_code);
|
|||
Region RegionSwitchWii(u8 country_code);
|
||||
Country CountrySwitch(u8 country_code);
|
||||
u8 GetSysMenuRegion(u16 title_version);
|
||||
std::string GetSysMenuVersionString(u16 title_version);
|
||||
std::string GetCompanyFromID(const std::string& company_id);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue