diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-13 20:29:27 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-13 20:29:27 +1000 |
commit | 567d384b698151e287e31140709c93f1b92e6db4 (patch) | |
tree | e00975124d3f002a8aaa22e85475d913c6950346 /src/log.h | |
parent | 13949ca02bcf9fcdfcc48ea7949f617553a260b6 (diff) |
loading joints and animations
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ void logger_shutdown(); // TODO: macro that outputs logger macros for a specific subsystem or string prefix e.g. "MEMORY" -> // logs now have more context potentially have line numbers too? -void log_output(log_level level, const char *message, ...); +void log_output(log_level level, const char* message, ...); #define FATAL(message, ...) log_output(LOG_LEVEL_FATAL, message, ##__VA_ARGS__) #define ERROR(message, ...) log_output(LOG_LEVEL_ERROR, message, ##__VA_ARGS__) @@ -57,7 +57,7 @@ void log_output(log_level level, const char *message, ...); // TODO: Move this to an asserts file -void report_assertion_failure(const char *expression, const char *message, const char *file, +void report_assertion_failure(const char* expression, const char* message, const char* file, int line); #define CASSERT(expr) \ |