diff options
| author | 2016-03-01 20:41:40 +0300 | |
|---|---|---|
| committer | 2016-03-27 10:08:04 +0300 | |
| commit | 81d988b0225c91dfda6f73a60d2a2b9b4db37ba1 (patch) | |
| tree | 7f0d330e239de7af82f750f61654283cd5f4d98a /src/common/logging | |
| parent | Merge pull request #1573 from wwylele/input_fix (diff) | |
| download | yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.gz yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.xz yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.zip | |
frd:u: Initial stub some functions
Diffstat (limited to 'src/common/logging')
| -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 4c86151ab..757e0cf47 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -34,6 +34,7 @@ namespace Log { | |||
| 34 | SUB(Kernel, SVC) \ | 34 | SUB(Kernel, SVC) \ |
| 35 | CLS(Service) \ | 35 | CLS(Service) \ |
| 36 | SUB(Service, SRV) \ | 36 | SUB(Service, SRV) \ |
| 37 | SUB(Service, FRD) \ | ||
| 37 | SUB(Service, FS) \ | 38 | SUB(Service, FS) \ |
| 38 | SUB(Service, ERR) \ | 39 | SUB(Service, ERR) \ |
| 39 | SUB(Service, APT) \ | 40 | SUB(Service, APT) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e4c39c308..4da4831c3 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -49,6 +49,7 @@ enum class Class : ClassType { | |||
| 49 | Service, ///< HLE implementation of system services. Each major service | 49 | Service, ///< HLE implementation of system services. Each major service |
| 50 | /// should have its own subclass. | 50 | /// should have its own subclass. |
| 51 | Service_SRV, ///< The SRV (Service Directory) implementation | 51 | Service_SRV, ///< The SRV (Service Directory) implementation |
| 52 | Service_FRD, ///< The FRD (Friends) service | ||
| 52 | Service_FS, ///< The FS (Filesystem) service implementation | 53 | Service_FS, ///< The FS (Filesystem) service implementation |
| 53 | Service_ERR, ///< The ERR (Error) port implementation | 54 | Service_ERR, ///< The ERR (Error) port implementation |
| 54 | Service_APT, ///< The APT (Applets) service | 55 | Service_APT, ///< The APT (Applets) service |