Help with making an app
-
- Posts: 1
- Joined: Wed Feb 13, 2013 4:54 pm
Help with making an app
I have been trying to make an app that launches an installed channel and maps some buttons to a sequence of inputs when held. I'm not entirely sure the best way to go about this but I tried WII_LaunchTitle(000100014e414545), which I thought would launch paper mario, but it didn't do anything. Any ideas?
Re: Help with making an app
WII_LaunchTitle(0x000100014e414545ULL)
The launch title is in hex so you have to use the hex donation ('0x' in c/c++)
The launch title is in hex so you have to use the hex donation ('0x' in c/c++)
-
- Posts: 18
- Joined: Fri Apr 27, 2012 6:05 am
- Location: The Twilight Zone
- Contact:
Re: Help with making an app
You're probably long-gone by now, but in case anybody is interested:
Code: Select all
#define TITLE_ID(x,y) (((u64)(x) << 32) | (y))
int main(int argc, char **argv) {
VIDEO_Init();
//Insert whatever else you want here
...
WII_LaunchTitle(TITLE_ID(0x00010001,0x4e414545)); // USA
WII_LaunchTitle(TITLE_ID(0x00010001,0x4e414550)); // Europe
WII_LaunchTitle(TITLE_ID(0x00010001,0x4e41454a)); // Japan
exit(0)
Re: Help with making an app
The launch title is in hex so you have to use the hex donation ('0x' in c/c++)
Who is online
Users browsing this forum: No registered users and 2 guests