summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-01-06 02:17:49 +0100
committerSubv <subv2112@gmail.com>2015-01-07 21:08:35 +0100
commit9bf82beb4cbb0b75448a071179c3497187963248 (patch)
treec7a99156a6aefb78436c625f1d3170ee4becccd0 /src/common
parentMerge pull request #422 from lioncash/bxj (diff)
downloadyuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar.gz
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar.bz2
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar.lz
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar.xz
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.tar.zst
yuzu-9bf82beb4cbb0b75448a071179c3497187963248.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/logging/backend.cpp1
-rw-r--r--src/common/logging/log.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 7ac30ad50..83ebb42d9 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -22,6 +22,7 @@ static std::shared_ptr<Logger> global_logger;
SUB(Common, Memory) \
CLS(Core) \
SUB(Core, ARM11) \
+ SUB(Core, Timing) \
CLS(Config) \
CLS(Debug) \
SUB(Debug, Emulated) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 06b99b07a..bda3d633a 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -41,6 +41,7 @@ enum class Class : ClassType {
Common_Memory, ///< Memory mapping and management functions
Core, ///< LLE emulation core
Core_ARM11, ///< ARM11 CPU core
+ Core_Timing, ///< CoreTiming functions
Config, ///< Emulator configuration (including commandline)
Debug, ///< Debugging tools
Debug_Emulated, ///< Debug messages from the emulated programs