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:
Lioncash 2015-07-28 22:06:42 -04:00
parent 93492a0e5a
commit 44e7a7bf91

View file

@ -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;