diff options
| author | David Marcec <dmarcecguzman@gmail.com> | 2020-04-29 20:38:07 +1000 |
|---|---|---|
| committer | David Marcec <dmarcecguzman@gmail.com> | 2020-04-29 20:49:35 +1000 |
| commit | 1fbc341aba7ee9b426fd291c737f318230759ad0 (patch) | |
| tree | 2bc052ea7017fcdf2810d1eb227e94eaec49c4a0 /src/core/hle/service/acc/acc.h | |
| parent | 8e64fb322593144600046dac30186ff51086d1ab (diff) | |
acc: Fix InitializeApplicationInfo
We're not suppose to pop a u64, should just read the sent pid and check that
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
| -rw-r--r-- | src/core/hle/service/acc/acc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h index 7a7dc9ec6..c79aea16a 100644 --- a/src/core/hle/service/acc/acc.h +++ b/src/core/hle/service/acc/acc.h @@ -35,7 +35,7 @@ public: void GetProfileEditor(Kernel::HLERequestContext& ctx); private: - ResultCode InitializeApplicationInfoBase(u64 process_id); + ResultCode InitializeApplicationInfoBase(); enum class ApplicationType : u32_le { GameCard = 0, |
