mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Change some for+iterator loops in GeckoCode.cpp and GeckoCodeConfig.cpp into foreach loops.
This commit is contained in:
parent
9856110782
commit
63700ad28a
3 changed files with 24 additions and 40 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue