nn::dbg::CTR::DirectPrint::PutString Member Function#include <nn/dbg.h>
void PutString(
const nn::math::VEC2 & pos,
bool autoLineFeed,
bool fillBg,
const char * str
);
void PutString(
const nn::math::VEC2 & pos,
const char * str
);
| PutString ( const nn::math::VEC2 &, bool, bool, const char * ) | Directly outputs the specified string without formatting. |
| PutString ( const nn::math::VEC2 &, const char * ) | Directly outputs the specified string without formatting. |
PutString ( const nn::math::VEC2 &, bool, bool, const char * )This is the same as Printf, except that the string is not formatted. The process is faster when strings are not formatted, plus there is no limit on the maximum number of characters.
PutString ( const nn::math::VEC2 &, const char * )The version without the autoLineFeed and fillBg arguments. It acts the same as when true is passed.
CONFIDENTIAL