Devkitpro - devkitpro.org - devkitPro.org
General Information:
Latest News:
libnds • Re: Garbage on top of screen when dissplaying text on backgr 27 Aug 2013 | 06:21 pm
Here is my answer to an eerily similar question on stack overflow: http://stackoverflow.com/questions/1759 ... devkit-pro Statistics: Posted by dovoto — Tue Aug 27, 2013 2:21 pm
User Contributions • Krawall GBA modplayer on GitHub 22 Aug 2013 | 02:16 pm
Hello everyone! I've finally gotten around to putting Krawall on GitHub: http://knzl.de/krawall/ I've updated it to work with the latest version of devkitARM. Cheers, Seb. Statistics: Posted by se...
libogc • Re: Help with making an app 22 Aug 2013 | 01:34 am
You're probably long-gone by now, but in case anybody is interested: Code: #define TITLE_ID(x,y) (((u64)(x) << 32) | (y)) int main(int argc, char **argv) { VIDEO_Init(); //Insert whatever else you w...
devkitPPC • Re: pipe functions 21 Aug 2013 | 07:16 pm
This is probably popen creates a new process ('sort' in your case). I doubt there is process management from a homebrew perspective, let alone processes. In this specific case you may want to replace ...
devkitARM • Re: Need help setting up makefilr to link multiple object fi 21 Aug 2013 | 07:12 pm
Can you be a bit more specific? Are you using any of the template makefiles? Statistics: Posted by mtheall — Wed Aug 21, 2013 3:12 pm
libogc • Fix for conf.c on the Wii U 21 Aug 2013 | 07:40 am
Because they removed the \r in setting.txt, CONF_GetVideo(), CONF_GetArea(), and CONF_GetRegion() don't work. They all rely on __CONF_GetTxt. It can be fixed with a single line though. Just add this a...
devkitARM • Need help setting up makefilr to link multiple object files 20 Aug 2013 | 02:03 am
How would i setup the makefile? Statistics: Posted by DolphinG89 — Mon Aug 19, 2013 10:03 pm
devkitPPC • Re: Help creating Static Polygons for fast drawing 19 Aug 2013 | 10:34 am
I've figured out that its the size of the object file I'm compiling. It's probably to big for the wii's l2 cache so the linker hangs. Although is 32 bit aligned a cast to u32 u8 or u16 or something el...
devkitPPC • pipe functions 17 Aug 2013 | 01:59 pm
Hello, I am trying to port Pari/Gp ( http://pari.math.u-bordeaux.fr/ ) to the Wii. Pari/Gp uses widely the pipe functions (popen, pclose) They are present in the stdio.h file. But the compilation giv...
devkitPPC • Re: Help creating Static Polygons for fast drawing 12 Aug 2013 | 03:06 pm
The attached file is me trying to get display lists which are like vertex array with DevkitPPC. Do you see a mistake? Is that not vertex groups? I see it has a FIFO limit of 8192KB. /*---------------...