Hi.
The output of pspDebugScreenPrintf becomes amusing when compiling with "- fshort-double". Will you correct this bug?
Thank you.
PSPSDK -fshort-double pspDebugScreenPrintf Bug
No. -fshort-double breaks the ABI (it says so in the docs). This means you have to recompile any external libraries that use doubles once you specify it for your code. pspDebugScreenPrint() calls vsnprintf() which is a part of libc. You will have to recompile both libc and PSPSDK with -fshort-double.