From 44e7a7bf9196cbd9860536319cc9d92c6ab9718d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 28 Jul 2015 22:06:42 -0400 Subject: [PATCH] GeckoCode: Remove GetAddress function prototype GetAddress didn't have a definition for its prototype. Also shortened the construction of the Code struct. --- Source/Core/Core/GeckoCode.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/GeckoCode.h b/Source/Core/Core/GeckoCode.h index cf3c34b61a..23f3569090 100644 --- a/Source/Core/Core/GeckoCode.h +++ b/Source/Core/Core/GeckoCode.h @@ -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 codes;