helpers for putting text into fStrBuf and returning it
| 227 | |
| 228 | // helpers for putting text into fStrBuf and returning it |
| 229 | const char* getTextBufInt(const int value) |
| 230 | { |
| 231 | std::snprintf(fStrBuf, 0xff, "%i", value); |
| 232 | return fStrBuf; |
| 233 | } |
| 234 | |
| 235 | const char* getTextBufFloat(const float value) |
| 236 | { |