Change some for+iterator loops in GeckoCode.cpp and GeckoCodeConfig.cpp into foreach loops.

This commit is contained in:
Lioncash
2014-02-04 19:19:48 -05:00
parent 9856110782
commit 63700ad28a
3 changed files with 24 additions and 40 deletions

View File

@ -31,9 +31,9 @@ namespace Gecko
u32 GetAddress() const;
};
std::vector<Code> codes;
std::string name, creator;
std::vector<std::string> notes;
std::vector<Code> codes;
std::string name, creator;
std::vector<std::string> notes;
bool enabled;
bool user_defined;