diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-09-21 18:43:11 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-21 18:43:20 -0400 |
| commit | 038bcec11153cefd713ddb06eddcc42b0a936df2 (patch) | |
| tree | db5abfb3d9b350ce931ec89ad8722233c8534a5e /src/core/hle/service/filesystem/fsp_srv.cpp | |
| parent | ccd70819c241a84c2ec7f8ad4706b6c0e9a24347 (diff) | |
configure_debug: Move reporting option to logging
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.cpp')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 305d9e176..eb982ad49 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp @@ -650,7 +650,8 @@ private: u64 next_entry_index = 0; }; -FSP_SRV::FSP_SRV(FileSystemController& fsc) : ServiceFramework("fsp-srv"), fsc(fsc) { +FSP_SRV::FSP_SRV(FileSystemController& fsc, const Core::Reporter& reporter) + : ServiceFramework("fsp-srv"), fsc(fsc), reporter(reporter) { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "OpenFileSystem"}, |
