ERRD_bugcheck @brief Somebody has screwed up. Bugcheck. @param text **/
| 97 | |
| 98 | **/ |
| 99 | void ERRD_bugcheck(const char* text) |
| 100 | { |
| 101 | TEXT s[MAXPATHLEN + 120]; |
| 102 | fb_utils::snprintf(s, sizeof(s), "INTERNAL: %s", text); // TXNN |
| 103 | ERRD_error(s); |
| 104 | } |
| 105 | |
| 106 | |
| 107 | /** |
no test coverage detected