Search found 33 matches
- Sun Feb 28, 2010 6:34 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
- Sun Feb 28, 2010 2:46 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
Ok great :-) I think you should post the function once done, since it sounds helpful :-P how's it going on your multitasking thing? Looks amazing. There is also another big project, very similar: NanoDesktop, but as far as I can see your one looks nicer (althou' I would change a bit the graphics, bu...
- Sat Feb 27, 2010 8:11 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
- Sat Feb 27, 2010 6:31 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
- Sun Feb 21, 2010 9:38 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
I repeat, getcwd() works for me.carl0sgs wrote:I think this is what you need:
(not sure of the values 600 & 601)Code: Select all
#include <dirent.h> // for getcwd char buffer[601]; getcwd(buffer, 600);
Hope it is useful
- Sun Feb 21, 2010 9:36 am
- Forum: PSP Development
- Topic: sceDisplayEnable & sceDisplaySetBrightness in User Mode
- Replies: 6
- Views: 8676
- Sat Feb 20, 2010 6:49 am
- Forum: PSP Development
- Topic: paths
- Replies: 35
- Views: 57033
I think this is what you need:
(not sure of the values 600 & 601)
Hope it is useful
Code: Select all
#include <dirent.h> // for getcwd
char buffer[601];
getcwd(buffer, 600);
Hope it is useful
- Wed Feb 17, 2010 8:12 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
- Tue Feb 16, 2010 12:43 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
- Sun Feb 07, 2010 9:48 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
- Sat Feb 06, 2010 7:35 pm
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
- Fri Feb 05, 2010 2:22 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
thanks for the source! but i think i haven't explained myself correctly the problem is that the sceGU is needed in different threads, and when it is started in one thread you cannot use it from other threads. This is solved by making objects lists wich are printed all at a time in the screen. But! w...
- Fri Feb 05, 2010 2:17 am
- Forum: PSP Development
- Topic: freetype
- Replies: 6
- Views: 4559
- Thu Feb 04, 2010 3:11 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
Hi again! So I've been thinking about how to implement widgets ;-) I have the idea, (i've added simple buttons support) and now I just need some speed. Here is a screenshot: http://carlosgs.no-ip.org:8080/PSPhomebrew/multiTasKing/multiTasKing1-EN-3-feb.jpg (The buttons keep count of the times they'v...
- Tue Jan 19, 2010 9:35 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
- Sat Dec 19, 2009 7:44 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
- Sat Dec 19, 2009 5:31 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
- Sat Dec 19, 2009 5:16 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
Nevermind, resolved... But now I get something like: http://img163.imageshack.us/img163/8893/snap000d.png There's a way to do something like this funct but with only one color? sceGuTexImage Like a monocrome texture? No idea of how did you got that :-S It is not possible to do that alpha blending w...
- Sat Dec 19, 2009 5:13 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
- Sat Dec 19, 2009 4:06 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
- Sat Dec 19, 2009 3:34 am
- Forum: PSP Development
- Topic: [SOLVED] User prx stack limit?
- Replies: 5
- Views: 4006
Don't worry about your english, it is good! ;-) (Im spanish lol) I have a similar problem with the memory in MultiTasKing, the function malloc() does something strange and the free memory becomes 0 :-S If you find a solution that would be great! By the way, what is the program you are working on? (&...
- Sat Dec 19, 2009 3:30 am
- Forum: PSP Development
- Topic: Alpha blending to draw buffer?
- Replies: 16
- Views: 25270
- Fri Dec 18, 2009 7:44 am
- Forum: PSP Development
- Topic: [SOLVED] User prx stack limit?
- Replies: 5
- Views: 4006
- Thu Dec 17, 2009 3:58 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
- Wed Dec 16, 2009 8:54 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
- Wed Dec 16, 2009 12:50 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
- Tue Dec 15, 2009 8:34 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
Re: RAM issue with PRX modules
I have realized that some functions, when used from .prx modules, get too much RAM (sprintf function, printf function). What do you mean by "get too much RAM"? In my program, you can see the free RAM in the desktop (usually ~5.125mb). When I load a prx it goes down a little bit. When the ...
- Tue Dec 15, 2009 5:00 am
- Forum: PSP Development
- Topic: RAM issue with PRX modules
- Replies: 12
- Views: 25252
RAM issue with PRX modules
Hi again! I'm having some trouble with the project "MultiTasKing", and I need your help. I have realized that some functions, when used from .prx modules, get too much RAM (sprintf function, printf function). Other functions, such as the one in the Curl library ported by JoJoSoft, work fro...
- Sat Dec 12, 2009 9:51 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
- Sat Dec 12, 2009 8:55 am
- Forum: PSP Development
- Topic: [Help/Suggestions needed] MultiTasKing v101
- Replies: 20
- Views: 19672
Re: MultiTasKing v101
Thanks! :-)liberty wrote:Really good. A wonder window manager. How about some widget tools?
What do you mean with widget tools?