diff options
| author | 2023-09-16 11:40:17 -0400 | |
|---|---|---|
| committer | 2023-09-16 11:40:17 -0400 | |
| commit | 62d473305df295a3b8e955e6a2a05a1105ef893d (patch) | |
| tree | 114ea862538652c81c14c282b81a29816fe5c2d1 /src/core/loader/kip.cpp | |
| parent | Merge pull request #11499 from Squall-Leonhart/bitlockerfix (diff) | |
| parent | core: improve debug workflow (diff) | |
| download | yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.gz yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.xz yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.zip | |
Merge pull request #11500 from liamwhite/debug-stuff
core: improve debug workflow
Diffstat (limited to 'src/core/loader/kip.cpp')
| -rw-r--r-- | src/core/loader/kip.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/kip.cpp b/src/core/loader/kip.cpp index d722459c6..bf56a08b4 100644 --- a/src/core/loader/kip.cpp +++ b/src/core/loader/kip.cpp | |||
| @@ -90,7 +90,8 @@ AppLoader::LoadResult AppLoader_KIP::Load(Kernel::KProcess& process, | |||
| 90 | codeset.DataSegment().size += kip->GetBSSSize(); | 90 | codeset.DataSegment().size += kip->GetBSSSize(); |
| 91 | 91 | ||
| 92 | // Setup the process code layout | 92 | // Setup the process code layout |
| 93 | if (process.LoadFromMetadata(FileSys::ProgramMetadata::GetDefault(), program_image.size()) | 93 | if (process |
| 94 | .LoadFromMetadata(FileSys::ProgramMetadata::GetDefault(), program_image.size(), false) | ||
| 94 | .IsError()) { | 95 | .IsError()) { |
| 95 | return {ResultStatus::ErrorNotInitialized, {}}; | 96 | return {ResultStatus::ErrorNotInitialized, {}}; |
| 96 | } | 97 | } |