Merge pull request #2785 from lioncash/def

GeckoCode: Remove GetAddress function prototype
This commit is contained in:
Markus Wick 2015-08-04 17:44:15 +02:00
commit 972faf42ed
1 changed files with 2 additions and 6 deletions

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;