diff options
| author | 2018-08-01 16:24:03 -0400 | |
|---|---|---|
| committer | 2018-08-01 16:45:51 -0400 | |
| commit | e39294c2678af19003b692e66f32956f7f546279 (patch) | |
| tree | e3c7e8dc5e5303a3439227f11d7f64cf88e72329 /src/common/logging | |
| parent | Merge pull request #885 from greggameplayer/R32-Float (diff) | |
| download | yuzu-e39294c2678af19003b692e66f32956f7f546279.tar.gz yuzu-e39294c2678af19003b692e66f32956f7f546279.tar.xz yuzu-e39294c2678af19003b692e66f32956f7f546279.zip | |
service: Add capture services
Adds the basic skeleton for the capture services based off information
provided by Switch Brew.
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 d86c40d26..8f9cb4d7b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -170,6 +170,7 @@ void FileBackend::Write(const Entry& entry) { | |||
| 170 | SUB(Service, APM) \ | 170 | SUB(Service, APM) \ |
| 171 | SUB(Service, BCAT) \ | 171 | SUB(Service, BCAT) \ |
| 172 | SUB(Service, BTM) \ | 172 | SUB(Service, BTM) \ |
| 173 | SUB(Service, Capture) \ | ||
| 173 | SUB(Service, Fatal) \ | 174 | SUB(Service, Fatal) \ |
| 174 | SUB(Service, FGM) \ | 175 | SUB(Service, FGM) \ |
| 175 | SUB(Service, Friend) \ | 176 | SUB(Service, Friend) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 140cd8e47..57552d49e 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -57,6 +57,7 @@ enum class Class : ClassType { | |||
| 57 | Service_Audio, ///< The Audio (Audio control) service | 57 | Service_Audio, ///< The Audio (Audio control) service |
| 58 | Service_BCAT, ///< The BCAT service | 58 | Service_BCAT, ///< The BCAT service |
| 59 | Service_BTM, ///< The BTM service | 59 | Service_BTM, ///< The BTM service |
| 60 | Service_Capture, ///< The capture service | ||
| 60 | Service_Fatal, ///< The Fatal service | 61 | Service_Fatal, ///< The Fatal service |
| 61 | Service_FGM, ///< The FGM service | 62 | Service_FGM, ///< The FGM service |
| 62 | Service_Friend, ///< The friend service | 63 | Service_Friend, ///< The friend service |