diff options
| author | 2018-08-14 21:32:53 -0400 | |
|---|---|---|
| committer | 2018-08-14 21:37:03 -0400 | |
| commit | 96c0b81a51ddb369e60721bb9903c6f31c5c5781 (patch) | |
| tree | 6ba7e8ba5a5ab7d11cbea05029b6cadc381e83b7 /src/core/loader/loader.cpp | |
| parent | Merge pull request #1055 from lioncash/init (diff) | |
| download | yuzu-96c0b81a51ddb369e60721bb9903c6f31c5c5781.tar.gz yuzu-96c0b81a51ddb369e60721bb9903c6f31c5c5781.tar.xz yuzu-96c0b81a51ddb369e60721bb9903c6f31c5c5781.zip | |
loader: Remove address mapping remnants from citra
These mappings are leftovers from citra and don't apply to the Switch.
Diffstat (limited to 'src/core/loader/loader.cpp')
| -rw-r--r-- | src/core/loader/loader.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 1f2f31535..b143f043c 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -17,12 +17,6 @@ | |||
| 17 | 17 | ||
| 18 | namespace Loader { | 18 | namespace Loader { |
| 19 | 19 | ||
| 20 | const std::initializer_list<Kernel::AddressMapping> default_address_mappings = { | ||
| 21 | {0x1FF50000, 0x8000, true}, // part of DSP RAM | ||
| 22 | {0x1FF70000, 0x8000, true}, // part of DSP RAM | ||
| 23 | {0x1F000000, 0x600000, false}, // entire VRAM | ||
| 24 | }; | ||
| 25 | |||
| 26 | FileType IdentifyFile(FileSys::VirtualFile file) { | 20 | FileType IdentifyFile(FileSys::VirtualFile file) { |
| 27 | FileType type; | 21 | FileType type; |
| 28 | 22 | ||