mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-28 12:18:42 +00:00
Add Everybody Votes Channel and Region Select to WiiLink config
This commit is contained in:
parent
32f4f3ae7c
commit
fdaa82f96d
4 changed files with 38 additions and 2 deletions
|
@ -39,6 +39,12 @@ constexpr u64 EVERYBODY_VOTES_CHANNEL_NTSC_J = 0x0001000148414a4a;
|
|||
|
||||
constexpr u64 EVERYBODY_VOTES_CHANNEL_PAL = 0x0001000148414a50;
|
||||
|
||||
constexpr u64 REGION_SELECT_CHANNEL_NTSC_U = 0x0001000848414c45;
|
||||
|
||||
constexpr u64 REGION_SELECT_CHANNEL_NTSC_J = 0x0001000848414c4a;
|
||||
|
||||
constexpr u64 REGION_SELECT_CHANNEL_PAL = 0x0001000848414c50;
|
||||
|
||||
constexpr u64 IOS(u32 major_version)
|
||||
{
|
||||
return 0x0000000100000000 | major_version;
|
||||
|
|
|
@ -18,8 +18,7 @@
|
|||
|
||||
namespace WC24PatchEngine
|
||||
{
|
||||
static std::array<u64, 12> s_wc24_channels{
|
||||
// Nintendo Channel
|
||||
static constexpr std::array<u64, 15> s_wc24_channels{
|
||||
Titles::NINTENDO_CHANNEL_NTSC_U,
|
||||
Titles::NINTENDO_CHANNEL_NTSC_J,
|
||||
Titles::NINTENDO_CHANNEL_PAL,
|
||||
|
@ -32,6 +31,9 @@ static std::array<u64, 12> s_wc24_channels{
|
|||
Titles::EVERYBODY_VOTES_CHANNEL_NTSC_U,
|
||||
Titles::EVERYBODY_VOTES_CHANNEL_NTSC_J,
|
||||
Titles::EVERYBODY_VOTES_CHANNEL_PAL,
|
||||
Titles::REGION_SELECT_CHANNEL_NTSC_U,
|
||||
Titles::REGION_SELECT_CHANNEL_NTSC_J,
|
||||
Titles::REGION_SELECT_CHANNEL_PAL,
|
||||
};
|
||||
|
||||
static std::vector<NetworkPatch> s_patches;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue