

#include <nitro/os.h>void OS_TVFPrintf( int console, const char *fmt, va_list vlist );
| console | Output window. |
| fmt | Output format string. |
| vlist | Variable argument list. |
None.
This is a version of OS_TVPrintf() that allows the output window to be specified. All behavior other than designating the output destination is based on the specification for OS_TVPrintf(), so be sure to refer to that page.
console is used to specify the output destination and can take values from 0 to 3, indicating the window number. Specify OS_PRINT_OUTPUT_NONE to output nothing. Specifying OS_PRINT_OUTPUT_CURRENT will output to the standard output destination that was specified using OS_SetPrintOutput().
This function is used for debugging. It does not perform any output in FINALROM versions of the library.
2008/01/12 Initial version.
CONFIDENTIAL