aboutsummaryrefslogtreecommitdiff
path: root/util/sokol_debugtext.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-03-28 10:54:20 +0100
committerAndre Weissflog <floooh@gmail.com>2025-03-28 10:54:20 +0100
commit8dab496f69ea4cbcf4ce86e5359481cbef086023 (patch)
tree78bce1554fb3625f72540cb8d81d6f71a186c6b1 /util/sokol_debugtext.h
parent1b7c8e72c679aaf407dc26db5695f04cdcc84a42 (diff)
fix clang warnings on windows
Diffstat (limited to 'util/sokol_debugtext.h')
-rw-r--r--util/sokol_debugtext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sokol_debugtext.h b/util/sokol_debugtext.h
index e1969213..904b778c 100644
--- a/util/sokol_debugtext.h
+++ b/util/sokol_debugtext.h
@@ -3996,7 +3996,7 @@ static void _sdtx_log(sdtx_log_item_t log_item, uint32_t log_level, uint32_t lin
const char* filename = 0;
const char* message = 0;
#endif
- _sdtx.desc.logger.func("sdtx", log_level, log_item, message, line_nr, filename, _sdtx.desc.logger.user_data);
+ _sdtx.desc.logger.func("sdtx", log_level, (uint32_t)log_item, message, line_nr, filename, _sdtx.desc.logger.user_data);
} else {
// for log level PANIC it would be 'undefined behaviour' to continue
if (log_level == 0) {