summaryrefslogtreecommitdiffstats
path: root/src/core/memory/dmnt_cheat_types.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/memory/dmnt_cheat_types.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/core/memory/dmnt_cheat_types.h b/src/core/memory/dmnt_cheat_types.h
index aa1264c32..bf68fa0fe 100644
--- a/src/core/memory/dmnt_cheat_types.h
+++ b/src/core/memory/dmnt_cheat_types.h
@@ -29,30 +29,30 @@
namespace Memory {
struct MemoryRegionExtents {
- u64 base;
- u64 size;
+ u64 base{};
+ u64 size{};
};
struct CheatProcessMetadata {
- u64 process_id;
- u64 title_id;
- MemoryRegionExtents main_nso_extents;
- MemoryRegionExtents heap_extents;
- MemoryRegionExtents alias_extents;
- MemoryRegionExtents address_space_extents;
- std::array<u8, 0x20> main_nso_build_id;
+ u64 process_id{};
+ u64 title_id{};
+ MemoryRegionExtents main_nso_extents{};
+ MemoryRegionExtents heap_extents{};
+ MemoryRegionExtents alias_extents{};
+ MemoryRegionExtents address_space_extents{};
+ std::array<u8, 0x20> main_nso_build_id{};
};
struct CheatDefinition {
- std::array<char, 0x40> readable_name;
- u32 num_opcodes;
- std::array<u32, 0x100> opcodes;
+ std::array<char, 0x40> readable_name{};
+ u32 num_opcodes{};
+ std::array<u32, 0x100> opcodes{};
};
struct CheatEntry {
- bool enabled;
- u32 cheat_id;
- CheatDefinition definition;
+ bool enabled{};
+ u32 cheat_id{};
+ CheatDefinition definition{};
};
} // namespace Memory