Merge pull request #2882 from danzel/movie-squash

Movie (Game Inputs) recording and playback
This commit is contained in:
James Rowe 2018-01-23 01:03:37 -07:00 committed by GitHub
commit 44d07574b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 673 additions and 41 deletions

View file

@ -74,6 +74,7 @@ namespace Log {
SUB(Audio, Sink) \
CLS(Input) \
CLS(Network) \
CLS(Movie) \
CLS(Loader) \
CLS(WebService)

View file

@ -92,6 +92,7 @@ enum class Class : ClassType {
Loader, ///< ROM loader
Input, ///< Input emulation
Network, ///< Network emulation
Movie, ///< Movie (Input Recording) Playback
WebService, ///< Interface to Citra Web Services
Count ///< Total number of logging classes
};