summaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-22 00:19:58 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-22 00:19:58 +1000
commit4f09bcb7dc48dc9b0d97ce3a9f73ffc6eee49045 (patch)
treee94bb84660061941c12eb25455a1a855649416a7 /src/log.c
parentda1ddc29ac15e511086b8b5343b735a34be1fcea (diff)
error handling loading pbr textures
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.c b/src/log.c
index 1b82f77..9c7eaa1 100644
--- a/src/log.c
+++ b/src/log.c
@@ -50,7 +50,7 @@ void log_output(log_level level, const char *message, ...) {
}
void report_assertion_failure(const char *expression, const char *message, const char *file,
- i32 line) {
+ int line) {
log_output(LOG_LEVEL_FATAL, "Assertion failure: %s, message: '%s', in file: %s, on line %d\n",
expression, message, file, line);
-} \ No newline at end of file
+}