aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_page_bitmap.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-11 18:55:22 -0800
committerbunnei <bunneidev@gmail.com>2021-02-18 16:16:24 -0800
commitf7a008d77f8aa47baf4c874c508b38af4965a145 (patch)
tree3a11b865d5f49be8fa0588ee5187f1b6c12022fb /src/core/hle/kernel/k_page_bitmap.h
parent6a19086001b5d7229728199d074b72c1d0dd34af (diff)
hle: kernel: KSystemControl does not belong in Memory namespace.
Diffstat (limited to 'src/core/hle/kernel/k_page_bitmap.h')
-rw-r--r--src/core/hle/kernel/k_page_bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_page_bitmap.h b/src/core/hle/kernel/k_page_bitmap.h
index da2d20032..c75d667c9 100644
--- a/src/core/hle/kernel/k_page_bitmap.h
+++ b/src/core/hle/kernel/k_page_bitmap.h
@@ -12,7 +12,7 @@
#include "common/bit_util.h"
#include "common/common_types.h"
#include "common/tiny_mt.h"
-#include "core/hle/kernel/memory/system_control.h"
+#include "core/hle/kernel/k_system_control.h"
namespace Kernel {
@@ -43,7 +43,7 @@ private:
public:
RandomBitGenerator() {
- rng.Initialize(static_cast<u32>(Memory::SystemControl::GenerateRandomU64()));
+ rng.Initialize(static_cast<u32>(KSystemControl::GenerateRandomU64()));
}
std::size_t SelectRandomBit(u64 bitmap) {