Search found 3 matches

by elz
Fri Mar 31, 2006 8:21 pm
Forum: PSP Development
Topic: retrieving nickname
Replies: 5
Views: 2289

Code: Select all

char nameBuffer[50];
sceUtilityGetSystemParamString(PSP_SYSTEMPARAM_ID_STRING_NICKNAME, nameBuffer, 50);
printf(nameBuffer);
by elz
Wed Mar 08, 2006 5:28 am
Forum: PSP Development
Topic: A new "Setting up Dev-C++ with PSPSDK" please
Replies: 2
Views: 1997

by elz
Mon Jan 09, 2006 6:47 pm
Forum: PSP Development
Topic: Way to detect RAM usage?
Replies: 8
Views: 6540

Ok, i've written a simple little function, which seems to work: float GetRAMFree&#40;&#41;&#123; float ram; //a hacky little way to estimate RAM left to use int ramAdd&#91;320&#93;; int i=0; for&#40;i=0;i<320;i++&#41;&#123; ramAdd&#91;i&#93; = malloc&#40;...