| 352 | } |
| 353 | |
| 354 | static LOG_COLOR ColorToLogColor(ColorRGBA Color) |
| 355 | { |
| 356 | return LOG_COLOR{ |
| 357 | (uint8_t)(Color.r * 255.0), |
| 358 | (uint8_t)(Color.g * 255.0), |
| 359 | (uint8_t)(Color.b * 255.0)}; |
| 360 | } |
| 361 | |
| 362 | void CConsole::Print(int Level, const char *pFrom, const char *pStr, ColorRGBA PrintColor) const |
| 363 | { |