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:
parent
93492a0e5a
commit
44e7a7bf91
|
@ -20,13 +20,9 @@ namespace Gecko
|
||||||
|
|
||||||
struct Code
|
struct Code
|
||||||
{
|
{
|
||||||
Code() : address(0), data(0) {}
|
u32 address = 0;
|
||||||
|
u32 data = 0;
|
||||||
u32 address, data;
|
|
||||||
|
|
||||||
std::string original_line;
|
std::string original_line;
|
||||||
|
|
||||||
u32 GetAddress() const;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
std::vector<Code> codes;
|
std::vector<Code> codes;
|
||||||
|
|
Loading…
Reference in New Issue