diff options
| author | 2021-03-23 18:33:29 -0700 | |
|---|---|---|
| committer | 2021-03-23 18:33:29 -0700 | |
| commit | a32190d0c2198d66657db33409348f067ada27d3 (patch) | |
| tree | 4f1458a4bee177bfed93f3c60e4108b683f9bf51 /src | |
| parent | common: common_sizes: Move sizes to the Common namespace. (diff) | |
| download | yuzu-a32190d0c2198d66657db33409348f067ada27d3.tar.gz yuzu-a32190d0c2198d66657db33409348f067ada27d3.tar.xz yuzu-a32190d0c2198d66657db33409348f067ada27d3.zip | |
hle: kernel: k_system_control: Remove unnecessary inline.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp index 919a6b943..86472b5ce 100644 --- a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp +++ b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp | |||
| @@ -13,13 +13,13 @@ namespace Kernel::Board::Nintendo::Nx { | |||
| 13 | 13 | ||
| 14 | namespace impl { | 14 | namespace impl { |
| 15 | 15 | ||
| 16 | constexpr inline const std::size_t RequiredNonSecureSystemMemorySizeVi = 0x2238 * 4 * 1024; | 16 | constexpr const std::size_t RequiredNonSecureSystemMemorySizeVi = 0x2238 * 4 * 1024; |
| 17 | constexpr inline const std::size_t RequiredNonSecureSystemMemorySizeNvservices = 0x710 * 4 * 1024; | 17 | constexpr const std::size_t RequiredNonSecureSystemMemorySizeNvservices = 0x710 * 4 * 1024; |
| 18 | constexpr inline const std::size_t RequiredNonSecureSystemMemorySizeMisc = 0x80 * 4 * 1024; | 18 | constexpr const std::size_t RequiredNonSecureSystemMemorySizeMisc = 0x80 * 4 * 1024; |
| 19 | 19 | ||
| 20 | } // namespace impl | 20 | } // namespace impl |
| 21 | 21 | ||
| 22 | constexpr inline const std::size_t RequiredNonSecureSystemMemorySize = | 22 | constexpr const std::size_t RequiredNonSecureSystemMemorySize = |
| 23 | impl::RequiredNonSecureSystemMemorySizeVi + impl::RequiredNonSecureSystemMemorySizeNvservices + | 23 | impl::RequiredNonSecureSystemMemorySizeVi + impl::RequiredNonSecureSystemMemorySizeNvservices + |
| 24 | impl::RequiredNonSecureSystemMemorySizeMisc; | 24 | impl::RequiredNonSecureSystemMemorySizeMisc; |
| 25 | 25 | ||