Search found 19 matches

by Quirky
Fri Jan 08, 2010 9:21 pm
Forum: DS/DSi Development
Topic: dswifi problem? {accept&close)x7 = guru meditation
Replies: 5
Views: 6749

Re: dswifi problem? {accept&close)x7 = guru meditation

Try with closesocket() instead of close().

EDIT: hmm, maybe not as that changes the semantics of the example...
by Quirky
Wed Jan 06, 2010 6:59 pm
Forum: libfat
Topic: Latest libfat with Max Media player
Replies: 3
Views: 13412

Latest libfat with Max Media player

I had these issues reported against bunjalloo "Initalising Fat fails on Max Media Player": http://code.google.com/p/quirkysoft/issues/detail?id=121 http://code.google.com/p/quirkysoft/issues/detail?id=122 Recompiling with devkitARM r26 and the previous libfat release (1.0.4) fixes the prob...
by Quirky
Sat Jan 02, 2010 5:23 pm
Forum: Bug Reports
Topic: homebrew menu freezing
Replies: 3
Views: 5143

Re: homebrew menu freezing

Have you patched the HomebrewMenu.nds file with the relevant DLDI driver?
by Quirky
Wed Dec 30, 2009 10:57 am
Forum: devkitARM
Topic: HomebrewMenu with devkitARM 27
Replies: 7
Views: 9278

Re: HomebrewMenu with devkitARM 27

Ah, that's got it. Runs fine now with all the latest stuff.
by Quirky
Tue Dec 29, 2009 6:45 am
Forum: devkitARM
Topic: HomebrewMenu with devkitARM 27
Replies: 7
Views: 9278

Re: HomebrewMenu with devkitARM 27

I realised that I had to change VoidFn to VoidFunctionPointer to get bootloader/source/boot.c to compile. So I updated to the latest svn libnds just in case, but still no joy. So that's the released devkitARM 27 with the released libraries, except libnds which is from subversion r3851. I added a few...
by Quirky
Mon Dec 28, 2009 5:29 pm
Forum: devkitARM
Topic: HomebrewMenu with devkitARM 27
Replies: 7
Views: 9278

Re: HomebrewMenu with devkitARM 27

Yeah, I updated everything. I'll keep checking. If it works for others in the same situation, it must be my own install that's messed up somewhere.
by Quirky
Mon Dec 28, 2009 11:51 am
Forum: devkitARM
Topic: HomebrewMenu with devkitARM 27
Replies: 7
Views: 9278

HomebrewMenu with devkitARM 27

I've been running the homebrew menu program from http://devkitpro.svn.sourceforge.net/svnroot/devkitpro/trunk/projects/nds/HomebrewMenu on my EZ Flash Vi, due to touch screen issues with the manufacturer's loader. I've updated to DKA 27 and svn up'd the homebrew menu and now it doesn't boot any NDS ...
by Quirky
Sun Dec 06, 2009 5:11 pm
Forum: Announcements
Topic: devkitARM release 27 and associated libraries.
Replies: 5
Views: 13391

Re: devkitARM release 27 and associated libraries.

Typo in the announcement? "devkitPPC release 18" => "devkitARM release 27".

Apart from that, upgraded and everything went smoothly. Nice one.
by Quirky
Sun Jun 28, 2009 10:02 pm
Forum: Bug Reports
Topic: [devkitARM] C++ bigger in r26 than r25 - sprintf usage?
Replies: 2
Views: 4533

Re: [devkitARM] C++ bigger in r26 than r25 - sprintf usage?

Logically enough, it seems adding -g is doing this. Removing -g reduces the final .nds file by 30-40k. I guess I had gotten used to the fact that -g on the NDS didn't have much overhead.
by Quirky
Sun Jun 28, 2009 9:53 pm
Forum: Bug Reports
Topic: [devkitARM] C++ bigger in r26 than r25 - sprintf usage?
Replies: 2
Views: 4533

[devkitARM] C++ bigger in r26 than r25 - sprintf usage?

It seems like cp-demangle.c is using sprintf rather than siprintf and this adds a fair bit to the size of the final .nds, presumably due to all the floating point stuff. I have no idea why cp-demangle is linked in to my code (some missing C++ flag?), so that could be the real cause of my particular ...