sceDisplayDisable()

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
3r Ch4mp1
Posts: 4
Joined: Sat Aug 11, 2007 10:19 am

sceDisplayDisable()

Post by 3r Ch4mp1 »

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.
3r Ch4mp1
Posts: 4
Joined: Sat Aug 11, 2007 10:19 am

Post by 3r Ch4mp1 »

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);
}
Post Reply