mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 04:36:18 +00:00
CheatManager/ISOProperties: Refactor ActionReplay tabs as a class
Refactor Action Replay code into its own class like Gecko Codes.
This commit is contained in:
parent
def0b42fb7
commit
00a4404045
17 changed files with 706 additions and 487 deletions
|
@ -19,6 +19,10 @@ struct AREntry
|
|||
u32 cmd_addr;
|
||||
u32 value;
|
||||
};
|
||||
constexpr bool operator==(const AREntry& left, const AREntry& right)
|
||||
{
|
||||
return left.cmd_addr == right.cmd_addr && left.value == right.value;
|
||||
}
|
||||
|
||||
struct ARCode
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue