Search found 5 matches

by israr
Thu Jul 10, 2008 9:05 pm
Forum: PSP Development
Topic: Package Image/data files in EBOOT.PBP?
Replies: 1
Views: 1008

Package Image/data files in EBOOT.PBP?

My psp application uses some images(png) and some other data files. Is there some way that I can package those files inside the EBOOT.PBP and access them from my program. I want to be still able to use normal file I/O functions on these packaged files. I see Sony updates inlude a .psar file. Can we ...
by israr
Tue Jul 08, 2008 8:52 pm
Forum: PSP Development
Topic: psp showing blackscreen and shutting down
Replies: 28
Views: 6179

psplink can only load PRX files via USB.

call pspDebugScreenInit() at start of main() to initialize blank screen. Call pspDebugScreenPrintf to print text on this screen.

If you dont call pspDebugScreenInit the display will keep showing "psplink foo bar" text..
by israr
Tue Jul 08, 2008 5:11 pm
Forum: PSP Development
Topic: make error
Replies: 6
Views: 1886

can you find psp-config.exe at path C:\cygwin\usr\local\pspdev\bin?This file should be present in your path.
If it is not present, try setting PSPSDK variable manually in your makefile.

Code: Select all

PSPSDK=C:/cygwin/usr/local/pspdev/psp/sdk
or

Code: Select all

PSPSDK=/cygdrive/c/cygwin/usr/local/pspdev/psp/sdk
by israr
Tue Jul 08, 2008 4:07 pm
Forum: PSP Development
Topic: send/recv from a thread..
Replies: 2
Views: 1197

solved

solved.. Thanks moonlight..
by israr
Tue Jul 08, 2008 3:36 pm
Forum: PSP Development
Topic: send/recv from a thread..
Replies: 2
Views: 1197

send/recv from a thread..

I can successfully create a socket and accept connection on that socket. send/recv works fine on the new connected socket. However When I create a thread, try to call recvin that thread, recv returns an -1 , and errno is set to 0x80410005. newsock = accept(sd, &sockaddr, &addrlen&...