mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #12159 from noahpistilli/evc+rgnsel
Add Everybody Votes Channel and Region Select to WiiLink config
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user