I have a problem with debug text/printing.
I originally got a black screen crash and PSPLink gave me the exception handler. SO i fixed it, and now nothing prints on the PSP, without PSPLink or with it.
but with PSPLink it does print it onto the console command prompt (telnet), meaning its not crashing when in the black screen with no text, just not printing it for some reason...
Does anybody have an explanation as to why PSPLink will print the debug printing text to the telnet console while the PSP itself will not, even WITHOUT the PSPLink active and running?
Thank you.
Prints Debug to PSPLink, but not PSP?
You are calling printf or cout to print I assume?
By default this prints to a debug stream which isn't rendered to the screen. PSPLink captures it and throws it onto its telnet session.
To get it to render to the screen you need to call pspDebugScreenPrintf instead.
pspDebugScreenPrintf("Hello world %i\n", 23);
It works just like printf, but prints to the screen on psp.
To change all your printfs to use it, use a #define:
#define printf pspDebugScreenPrintf
And recompile all your code.
By default this prints to a debug stream which isn't rendered to the screen. PSPLink captures it and throws it onto its telnet session.
To get it to render to the screen you need to call pspDebugScreenPrintf instead.
pspDebugScreenPrintf("Hello world %i\n", 23);
It works just like printf, but prints to the screen on psp.
To change all your printfs to use it, use a #define:
#define printf pspDebugScreenPrintf
And recompile all your code.