diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 07:33:31 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 07:33:31 +0200 |
commit | f1e830392b084be776286a61409d0e4a2755c2cf (patch) | |
tree | fb87c2b41a84bf17b7bc7833fa73fbf678af31c8 | |
parent | 3f22ea7e41a81d3c818bdeb536f8df7ff352ae0f (diff) |
quick fix
-rw-r--r-- | src/crepe/util/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h index 2b0fbe1..763b314 100644 --- a/src/crepe/util/log.h +++ b/src/crepe/util/log.h @@ -9,7 +9,7 @@ #define _crepe_logf_here(fmt, ...) \ crepe::util::logf(util::log_level::DEBUG, "%s%s (%s:%d)" fmt "\n", \ crepe::util::color::FG_WHITE, __PRETTY_FUNCTION__, \ - __FILE_NAME__, __LINE__, crepe::util::color::RESET, \ + __FILE__, __LINE__, crepe::util::color::RESET, \ __VA_ARGS__) // very illegal global function-style macros |