diff options
| author | 2015-05-09 00:39:56 -0300 | |
|---|---|---|
| committer | 2015-05-09 01:29:52 -0300 | |
| commit | 1c0b87edc2d8262c06ea4c301bcfc884875f918b (patch) | |
| tree | f5b49739cc6cb7ca758111c5171c84b2c3152f5f /src/core/loader/3dsx.cpp | |
| parent | Loader: Remove .bin file support (diff) | |
| download | yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.tar.gz yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.tar.xz yuzu-1c0b87edc2d8262c06ea4c301bcfc884875f918b.zip | |
Memory: Re-organize and rename memory area address constants
Diffstat (limited to 'src/core/loader/3dsx.cpp')
| -rw-r--r-- | src/core/loader/3dsx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/3dsx.cpp b/src/core/loader/3dsx.cpp index 15527c5a6..e28986085 100644 --- a/src/core/loader/3dsx.cpp +++ b/src/core/loader/3dsx.cpp | |||
| @@ -234,9 +234,9 @@ ResultStatus AppLoader_THREEDSX::Load() { | |||
| 234 | Kernel::g_current_process->svc_access_mask.set(); | 234 | Kernel::g_current_process->svc_access_mask.set(); |
| 235 | Kernel::g_current_process->address_mappings = default_address_mappings; | 235 | Kernel::g_current_process->address_mappings = default_address_mappings; |
| 236 | 236 | ||
| 237 | Load3DSXFile(*file, Memory::EXEFS_CODE_VADDR); | 237 | Load3DSXFile(*file, Memory::PROCESS_IMAGE_VADDR); |
| 238 | 238 | ||
| 239 | Kernel::g_current_process->Run(Memory::EXEFS_CODE_VADDR, 48, Kernel::DEFAULT_STACK_SIZE); | 239 | Kernel::g_current_process->Run(Memory::PROCESS_IMAGE_VADDR, 48, Kernel::DEFAULT_STACK_SIZE); |
| 240 | 240 | ||
| 241 | is_loaded = true; | 241 | is_loaded = true; |
| 242 | return ResultStatus::Success; | 242 | return ResultStatus::Success; |