diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-02-09 18:55:32 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-02-09 18:55:32 +0100 |
| commit | c554de7d15d99e3cfb7f10613bc49fb692bd1762 (patch) | |
| tree | 489f9fbae35310293596d1f5d30c309776408a9a | |
| parent | 24472f38627e19acf582f3f5439d83a285ceeff9 (diff) | |
sokol_app.h: tweak log message format
| -rw-r--r-- | sokol_app.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_app.h b/sokol_app.h index 027df4fd..dc288db2 100644 --- a/sokol_app.h +++ b/sokol_app.h @@ -2847,7 +2847,7 @@ _SOKOL_PRIVATE void _sapp_free(void* ptr) { // // >>logging #if defined(SOKOL_DEBUG) -#define _SAPP_LOGITEM_XMACRO(item,msg) msg, +#define _SAPP_LOGITEM_XMACRO(item,msg) #item ": " msg, static const char* _sapp_log_messages[] = { _SAPP_LOG_ITEMS }; |