diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-11-12 05:20:26 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-11-12 07:55:39 -0500 |
| commit | 23878bf360b95561729ee1208118cb8e13b6aeca (patch) | |
| tree | f82392a84fbb6fab0db80956d44ec763cfe7cd50 /src/core/file_sys/program_metadata.h | |
| parent | 86a1eb7789482456df503b74306dc5e1a28c1013 (diff) | |
loader; Resolve sign conversion/truncation errors
Diffstat (limited to 'src/core/file_sys/program_metadata.h')
| -rw-r--r-- | src/core/file_sys/program_metadata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/program_metadata.h b/src/core/file_sys/program_metadata.h index 88ec97d85..f8759a396 100644 --- a/src/core/file_sys/program_metadata.h +++ b/src/core/file_sys/program_metadata.h @@ -47,8 +47,8 @@ public: Loader::ResultStatus Load(VirtualFile file); // Load from parameters instead of NPDM file, used for KIP - void LoadManual(bool is_64_bit, ProgramAddressSpaceType address_space, u8 main_thread_prio, - u8 main_thread_core, u32 main_thread_stack_size, u64 title_id, + void LoadManual(bool is_64_bit, ProgramAddressSpaceType address_space, s32 main_thread_prio, + u32 main_thread_core, u32 main_thread_stack_size, u64 title_id, u64 filesystem_permissions, KernelCapabilityDescriptors capabilities); bool Is64BitProgram() const; |
