diff options
author | wwylele <wwylele@gmail.com> | 2017-01-20 20:52:32 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-03-01 22:30:57 +0100 |
commit | 3974895e08fc133c4e000c2a654f401662325718 (patch) | |
tree | 6d2ae82440c528845032ae7c4dd1317c90f0de4a /src/common | |
parent | Common: add ParamPackage (diff) | |
download | yuzu-3974895e08fc133c4e000c2a654f401662325718.tar yuzu-3974895e08fc133c4e000c2a654f401662325718.tar.gz yuzu-3974895e08fc133c4e000c2a654f401662325718.tar.bz2 yuzu-3974895e08fc133c4e000c2a654f401662325718.tar.lz yuzu-3974895e08fc133c4e000c2a654f401662325718.tar.xz yuzu-3974895e08fc133c4e000c2a654f401662325718.tar.zst yuzu-3974895e08fc133c4e000c2a654f401662325718.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 737e1d57f..42f6a9918 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -71,6 +71,7 @@ namespace Log { CLS(Audio) \ SUB(Audio, DSP) \ SUB(Audio, Sink) \ + CLS(Input) \ CLS(Loader) // GetClassName is a macro defined by Windows.h, grrr... diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 4b0f8ff03..1b905f66c 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -89,6 +89,7 @@ enum class Class : ClassType { Audio_DSP, ///< The HLE implementation of the DSP Audio_Sink, ///< Emulator audio output backend Loader, ///< ROM loader + Input, ///< Input emulation Count ///< Total number of logging classes }; |