Skip to content

Commit

Permalink
[nob.c] Add missing config options to log_config()
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Jun 7, 2024
1 parent b135964 commit 28c4fb3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions nob.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@ void log_config(Nob_Log_Level level)
#else
nob_log(level, "Microphone: DISABLED");
#endif // MUSIALIZER_MICROPHONE
#ifdef MUSIALIZER_UNBUNDLE
nob_log(level, "Unbundle: ENABLED");
#else
nob_log(level, "Unbundle: DISABLED");
#endif // MUSIALIZER_UNBUNDLE
#ifdef MUSIALIZER_ACT_ON_PRESS
nob_log(level, "Act on Press: ENABLED");
#else
nob_log(level, "Act on Press: DISABLED");
#endif // MUSIALIZER_ACT_ON_PRESS
}

#define genf(out, ...) \
Expand Down

0 comments on commit 28c4fb3

Please sign in to comment.