mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 16:30:12 +00:00
Merge pull request #2785 from lioncash/def
GeckoCode: Remove GetAddress function prototype
This commit is contained in:
commit
972faf42ed
1 changed files with 2 additions and 6 deletions
|
@ -20,13 +20,9 @@ namespace Gecko
|
|||
|
||||
struct Code
|
||||
{
|
||||
Code() : address(0), data(0) {}
|
||||
|
||||
u32 address, data;
|
||||
|
||||
u32 address = 0;
|
||||
u32 data = 0;
|
||||
std::string original_line;
|
||||
|
||||
u32 GetAddress() const;
|
||||
};
|
||||
|
||||
std::vector<Code> codes;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue