fix: forgot to rename implementation back to

This commit is contained in:
2025-03-04 14:41:34 +01:00
parent 3af8cb9435
commit 1d8a227180

View File

@@ -49,7 +49,7 @@ void warn(char const* fmt, ...) {
(void)fprintf(stderr, "\033[93mW: %s\033[0m\n", buf); (void)fprintf(stderr, "\033[93mW: %s\033[0m\n", buf);
} }
noreturn void i_error(gamestatus error_code, uint32_t ln, char const* fname, char const* fmt, ...) { noreturn void error(gamestatus error_code, char const* fname, uint32_t ln, char const* fmt, ...) {
char buf1[PRINT_BUFFER_SIZE] = {0}; char buf1[PRINT_BUFFER_SIZE] = {0};
write_args(buf1, fmt); write_args(buf1, fmt);