mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
MemoryWidget add dual views for two separate column types. Force first column to be Hex32.
This commit is contained in:
@ -48,7 +48,7 @@ public:
|
||||
|
||||
void SetAddressSpace(AddressSpace::Type address_space);
|
||||
AddressSpace::Type GetAddressSpace() const;
|
||||
void SetDisplay(Type type, int bytes_per_row, int alignment);
|
||||
void SetDisplay(Type type, int bytes_per_row, int alignment, bool dual_view);
|
||||
void SetBPType(BPType type);
|
||||
void SetAddress(u32 address);
|
||||
|
||||
@ -70,6 +70,8 @@ private:
|
||||
void OnContextMenu();
|
||||
void OnCopyAddress();
|
||||
void OnCopyHex();
|
||||
void UpdateBreakpointTags();
|
||||
void UpdateColumns(Type type, int first_column);
|
||||
|
||||
AddressSpace::Type m_address_space{};
|
||||
Type m_type = Type::Hex8;
|
||||
@ -82,4 +84,5 @@ private:
|
||||
int m_font_vspace = 0;
|
||||
int m_bytes_per_row = 16;
|
||||
int m_alignment = 16;
|
||||
bool m_dual_view = false;
|
||||
};
|
||||
|
Reference in New Issue
Block a user