Re: Dop-IOS mod August 16, 2009 05:38PM | Admin Registered: 16 years ago Posts: 5,132 |
Re: Dop-IOS mod August 16, 2009 05:39PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 05:40PM | Admin Registered: 16 years ago Posts: 5,132 |
Re: Dop-IOS mod August 16, 2009 05:45PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 05:47PM | Registered: 15 years ago Posts: 1,141 |
Re: Dop-IOS mod August 16, 2009 05:52PM | Admin Registered: 16 years ago Posts: 5,132 |
Re: Dop-IOS mod August 16, 2009 06:46PM | Registered: 15 years ago Posts: 5,075 |
basicInit(); WPAD_Init();
Re: Dop-IOS mod August 16, 2009 06:59PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 07:01PM | Registered: 15 years ago Posts: 5,075 |
Re: Dop-IOS mod August 16, 2009 07:07PM | Admin Registered: 16 years ago Posts: 5,132 |
Re: Dop-IOS mod August 16, 2009 07:09PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 07:14PM | Registered: 15 years ago Posts: 5,075 |
Re: Dop-IOS mod August 16, 2009 07:15PM | Admin Registered: 16 years ago Posts: 5,132 |
My fault, whoops. Hold on... I'll edit this post with the fixed code in a second... (I got the same error BTW)Quote
metroid_maniac
It gives me some sort of continual code dump. It just keeps scrolling down. that's all that mine did. TopGun?
int ourios = 0; int tracker = 0; int totalios = 3; for(;;){ WPAD_ScanPads(); if(WPAD_ButtonsDown(WPAD_CHAN_0)&WPAD_BUTTON_A) break; if(WPAD_ButtonsDown(WPAD_CHAN_0)&WPAD_BUTTON_HOME) exit(0); if(WPAD_ButtonsDown(WPAD_CHAN_0)&WPAD_BUTTON_RIGHT) tracker++; if(WPAD_ButtonsDown(WPAD_CHAN_0)&WPAD_BUTTON_LEFT) tracker--; if(tracker < 0) tracker = totalios; if(tracker > totalios) tracker = 0; if(tracker == 0) ourios = 35; if(tracker == 1) ourios = 36; if(tracker == 2) ourios = 60; if(tracker == 3) ourios = 61; printf("\x1b[2;0H"); printf("IOS: %d", ourios); VIDEO_WaitVSync(); }
Re: Dop-IOS mod August 16, 2009 07:25PM | Registered: 15 years ago Posts: 5,075 |
Re: Dop-IOS mod August 16, 2009 08:57PM | Registered: 15 years ago Posts: 1,141 |
Re: Dop-IOS mod August 16, 2009 08:58PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 08:59PM | Registered: 15 years ago Posts: 5,075 |
Re: Dop-IOS mod August 16, 2009 09:05PM | Registered: 15 years ago Posts: 1,141 |
Re: Dop-IOS mod August 16, 2009 09:08PM | Registered: 16 years ago Posts: 1,597 |
Re: Dop-IOS mod August 16, 2009 09:10PM | Registered: 15 years ago Posts: 1,141 |