diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-03-18 10:37:41 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-03-18 10:38:01 -0400 |
| commit | 9f092554c273972e6d2a5e8a8893ef59e9f8812d (patch) | |
| tree | 69874c50b939c45de6342b2178961fa5e5a1d946 /src/core/hle/service/filesystem/fsp_srv.h | |
| parent | 30f228a8c93293551839cce3e539e9b7dae7fab2 (diff) | |
fsp_srv: Unstub SetCurrentProcess
This just acts as a basic setter for a given PID value and performs no
further checking, so we can just store the passed in value.
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.h')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.h b/src/core/hle/service/filesystem/fsp_srv.h index 3a5f4e200..d7572ba7a 100644 --- a/src/core/hle/service/filesystem/fsp_srv.h +++ b/src/core/hle/service/filesystem/fsp_srv.h @@ -32,6 +32,7 @@ private: void OpenPatchDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx); FileSys::VirtualFile romfs; + u64 current_process_id = 0; }; } // namespace Service::FileSystem |
