diff options
Diffstat (limited to 'common/debug.h')
-rw-r--r-- | common/debug.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/debug.h b/common/debug.h index 95779af617..c84bc7d8af 100644 --- a/common/debug.h +++ b/common/debug.h @@ -26,6 +26,7 @@ #define COMMON_DEBUG_H #include "common/scummsys.h" +#include "common/console.h" #include "common/list.h" #include "common/str.h" @@ -96,6 +97,12 @@ bool isDebugChannelEnabled(uint32 level); bool isDebugChannelEnabled(const String &name); +/** + * Set the output formatter used by debug() and related functions. + */ +void setDebugOutputFormatter(OutputFormatter f); + + } // End of namespace Common |