mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
Run code through clang-modernize -loop-convert to create range-based for loops, and manually fix some stuff up.
This commit is contained in:
parent
00fe5057f1
commit
965b32be9c
90 changed files with 688 additions and 739 deletions
|
@ -298,8 +298,8 @@ void SysConf::GenerateSysConf()
|
|||
items[26].data[0] = 0x01;
|
||||
|
||||
|
||||
for (int i = 0; i < 27; i++)
|
||||
m_Entries.push_back(items[i]);
|
||||
for (auto& item : items)
|
||||
m_Entries.push_back(item);
|
||||
|
||||
File::CreateFullPath(m_FilenameDefault);
|
||||
File::IOFile g(m_FilenameDefault, "wb");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue