Sets an error message
| 94 | |
| 95 | // Sets an error message |
| 96 | void rend_SetErrorMessage(const char *str) { |
| 97 | ASSERT(strlen(str) < 256); |
| 98 | strcpy(Renderer_error_message, str); |
| 99 | } |
| 100 | |
| 101 | // FIXME: Unused |
| 102 | // Sets the argb characteristics of the font characters. color1 is the upper left and proceeds clockwise |