log debug message to tty

This commit is contained in:
georgemoralis 2024-04-01 08:44:07 +03:00
parent 2382e77898
commit 06d6ad09ea
3 changed files with 3 additions and 1 deletions

View file

@ -98,6 +98,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) {
CLS(Render) \
SUB(Render, Vulkan) \
CLS(Input) \
CLS(Tty) \
CLS(Loader)
// GetClassName is a macro defined by Windows.h, grrr...

View file

@ -66,6 +66,7 @@ enum class Class : u8 {
Render_Vulkan, ///< Vulkan backend
Loader, ///< ROM loader
Input, ///< Input emulation
Tty, ///< Debug output from emu
Count ///< Total number of logging classes
};