mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
GeckoCode: Remove GetAddress function prototype
GetAddress didn't have a definition for its prototype. Also shortened the construction of the Code struct.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user