Search found 4 matches

by Badboy_
Sat Feb 21, 2009 10:21 pm
Forum: PS2 Development
Topic: Archlinux PKGBUILDS for ps2toolchain
Replies: 23
Views: 9993

... i saw this line: rm -rf `find . -type d -name .svn` first: backticks are outdated! instead the use of the $()-syntax would be better. BUT! why don't you use: find . -type d -name .svn -exec rm -rf "{}" \; edit: a friend told me that this package will fail on x86_64 x...
by Badboy_
Tue Nov 25, 2008 5:41 am
Forum: PSP Development
Topic: atexit does not work
Replies: 6
Views: 1773

put your save_settings call in the exit callback...
by Badboy_
Sun Nov 09, 2008 2:08 am
Forum: PSP Development
Topic: Returning data from a exported function...
Replies: 22
Views: 5994

Code: Select all

char* GetBarraInf(void)
{
    char* data= (char*) malloc(20);
    strcpy(data, "Hello, world!");
    return data;
}
does this work?
by Badboy_
Wed Aug 20, 2008 9:34 pm
Forum: PSP Development
Topic: PSP PDF Preview 2 released
Replies: 11
Views: 9953

why should I use your pdf reader? what makes it better then bookr?