mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06: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:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user