diff options
| author | 2018-08-14 22:43:04 -0400 | |
|---|---|---|
| committer | 2018-08-14 22:43:04 -0400 | |
| commit | 3db1b8e0cd79313975144b3e6b9a5a0ebc7ada83 (patch) | |
| tree | 195f0f95f826217bc65292d29167bdb52e96e4de /src/core/loader/loader.h | |
| parent | Merge pull request #1072 from lioncash/svc (diff) | |
| parent | loader: Remove address mapping remnants from citra (diff) | |
| download | yuzu-3db1b8e0cd79313975144b3e6b9a5a0ebc7ada83.tar.gz yuzu-3db1b8e0cd79313975144b3e6b9a5a0ebc7ada83.tar.xz yuzu-3db1b8e0cd79313975144b3e6b9a5a0ebc7ada83.zip | |
Merge pull request #1073 from lioncash/3ds
loader: Remove address mapping remnants from citra
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 285363549..6dffe451a 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <algorithm> | 7 | #include <algorithm> |
| 8 | #include <initializer_list> | ||
| 9 | #include <memory> | 8 | #include <memory> |
| 10 | #include <string> | 9 | #include <string> |
| 11 | #include <utility> | 10 | #include <utility> |
| @@ -208,12 +207,6 @@ protected: | |||
| 208 | }; | 207 | }; |
| 209 | 208 | ||
| 210 | /** | 209 | /** |
| 211 | * Common address mappings found in most games, used for binary formats that don't have this | ||
| 212 | * information. | ||
| 213 | */ | ||
| 214 | extern const std::initializer_list<Kernel::AddressMapping> default_address_mappings; | ||
| 215 | |||
| 216 | /** | ||
| 217 | * Identifies a bootable file and return a suitable loader | 210 | * Identifies a bootable file and return a suitable loader |
| 218 | * @param file The bootable file | 211 | * @param file The bootable file |
| 219 | * @return the best loader for this file | 212 | * @return the best loader for this file |