Page 1 of 1

Help with making an app

Posted: Wed Feb 13, 2013 5:06 pm
by tsukishima
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

Posted: Sun Jul 28, 2013 8:42 pm
by antidote
WII_LaunchTitle(0x000100014e414545ULL)
The launch title is in hex so you have to use the hex donation ('0x' in c/c++)

Re: Help with making an app

Posted: Wed Aug 21, 2013 9:34 pm
by JoostinOnline
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

Posted: Thu Aug 28, 2014 7:58 am
by Harry
The launch title is in hex so you have to use the hex donation ('0x' in c/c++)