Skip to content

Commit

Permalink
Comment some compile time debug msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
plodah committed Nov 13, 2024
1 parent e15f3fb commit ca8602e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions users/plodah/functions/alttab_enhancements.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
#endif // DEFERRED_EXEC_ENABLE

#if defined(PLODAH_ALTTAB_ENHANCEMENTS_MODE_DE)
#pragma message("Deferred Exec AltTab")
// #pragma message("Deferred Exec AltTab")
static deferred_token altTabToken = INVALID_DEFERRED_TOKEN;
#else // PLODAH_ALTTAB_ENHANCEMENTS_MODE_DE
#pragma message("Non-Deferred Exec AltTab")
// #pragma message("Non-Deferred Exec AltTab")
bool is_alt_tab_active = false;
uint16_t alt_tab_timer = 0;
#endif // PLODAH_ALTTAB_ENHANCEMENTS_MODE_DE
Expand Down
2 changes: 1 addition & 1 deletion users/plodah/functions/autocorrect.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#endif // DEFERRED_EXEC_ENABLE

#if defined(PLODAH_AUTOCORRECT_IND_MODE_DE)
#pragma message("Deferred Exec Autocorrect")
// #pragma message("Deferred Exec Autocorrect")
static deferred_token autoCorrectIndToken = INVALID_DEFERRED_TOKEN;
#else // PLODAH_AUTOCORRECT_IND_MODE_DE
bool autocorrect_indicator_on = false;
Expand Down
4 changes: 2 additions & 2 deletions users/plodah/functions/dynamic_macros.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#endif // DEFERRED_EXEC_ENABLE

#if defined(PLODAH_DYNAMIC_MACRO_TIMEOUT_MODE_DE)
#pragma message("Deferred Exec Dynamic Macro Timeout")
// #pragma message("Deferred Exec Dynamic Macro Timeout")
deferred_token dynamicMacroToken = INVALID_DEFERRED_TOKEN;
#else
#pragma message("Non-DE Dynamic Macro Timeout")
// #pragma message("Non-DE Dynamic Macro Timeout")
uint16_t dynamic_macro_timer;
#endif // PLODAH_DYNAMIC_MACRO_TIMEOUT_MODE_DE

Expand Down

0 comments on commit ca8602e

Please sign in to comment.