summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_memory_region.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/k_memory_region.h')
-rw-r--r--src/core/hle/kernel/k_memory_region.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_memory_region.h b/src/core/hle/kernel/k_memory_region.h
index 374b24bd3..782c21fbf 100644
--- a/src/core/hle/kernel/k_memory_region.h
+++ b/src/core/hle/kernel/k_memory_region.h
@@ -91,7 +91,7 @@ public:
return (this->GetType() | type) == this->GetType();
}
- constexpr bool HasTypeAttribute(KMemoryRegionAttr attr) const {
+ constexpr bool HasTypeAttribute(u32 attr) const {
return (this->GetType() | attr) == this->GetType();
}
@@ -103,7 +103,7 @@ public:
pair_address = a;
}
- constexpr void SetTypeAttribute(KMemoryRegionAttr attr) {
+ constexpr void SetTypeAttribute(u32 attr) {
type_id |= attr;
}
@@ -237,7 +237,7 @@ public:
return extents;
}
- DerivedRegionExtents GetDerivedRegionExtents(KMemoryRegionAttr type_id) const {
+ DerivedRegionExtents GetDerivedRegionExtents(u32 type_id) const {
return GetDerivedRegionExtents(static_cast<KMemoryRegionType>(type_id));
}