Hi guys, i'm trying to turn off fully the psp screen, i used sceGuDisplay(0) but when i use sceGuDisplay(1) the screen keeps black but the backlight turns on as I increase the brightness.
I've read here about sceDisplayDisable and sceDisplayEnable, i put them on the top of my file, but in linking time they cannot be resolved (or simmilar).
So what version of the pspsdk must i use to get them working or what should I do, what i found searching here was completely useless for me.
Thanks in advance.
sceDisplayDisable()
Problem fixed, the only thing i done was this, if you are programming in C++ and want to use these two functions use this:
Code: Select all
extern "C"{
int sceDisplayEnable(void);
int sceDisplayDisable(void);
}