summaryrefslogtreecommitdiff
path: root/Source/Core/Common/SysConf.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-08-06 16:16:41 -0400
committerLioncash <mathew1800@gmail.com>2016-08-06 16:22:42 -0400
commit08bc19bf515e4f8b4775f9b9ba20d27b01257e89 (patch)
tree5a5a86300d0b74653a636f1448369b9e8645cb87 /Source/Core/Common/SysConf.cpp
parent58b871e05c42c54394101487d05668296f427a6e (diff)
SysConf: Use range-based for loops in sysconf generation
Same thing, nicer looking
Diffstat (limited to 'Source/Core/Common/SysConf.cpp')
-rw-r--r--Source/Core/Common/SysConf.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/Core/Common/SysConf.cpp b/Source/Core/Common/SysConf.cpp
index 2c9e3e5347..d6aed4f29e 100644
--- a/Source/Core/Common/SysConf.cpp
+++ b/Source/Core/Common/SysConf.cpp
@@ -330,9 +330,9 @@ void SysConf::GenerateSysConf()
// Write the header and item offsets
g.WriteBytes(&s_Header.version, sizeof(s_Header.version));
g.WriteBytes(&s_Header.numEntries, sizeof(u16));
- for (int i = 0; i != 27; ++i)
+ for (const auto& item : items)
{
- const u16 tmp_offset = Common::swap16(items[i].offset);
+ const u16 tmp_offset = Common::swap16(item.offset);
g.WriteBytes(&tmp_offset, 2);
}
const u16 end_data_offset = Common::swap16(current_offset);
@@ -340,30 +340,30 @@ void SysConf::GenerateSysConf()
// Write the items
const u8 null_byte = 0;
- for (int i = 0; i != 27; ++i)
+ for (const auto& item : items)
{
- u8 description = (items[i].type << 5) | (items[i].nameLength - 1);
+ u8 description = (item.type << 5) | (item.nameLength - 1);
g.WriteBytes(&description, sizeof(description));
- g.WriteBytes(&items[i].name, items[i].nameLength);
- switch (items[i].type)
+ g.WriteBytes(&item.name, item.nameLength);
+ switch (item.type)
{
case Type_BigArray:
{
- const u16 tmpDataLength = Common::swap16(items[i].dataLength);
+ const u16 tmpDataLength = Common::swap16(item.dataLength);
g.WriteBytes(&tmpDataLength, 2);
- g.WriteBytes(items[i].data, items[i].dataLength);
+ g.WriteBytes(item.data, item.dataLength);
g.WriteBytes(&null_byte, 1);
}
break;
case Type_SmallArray:
- g.WriteBytes(&items[i].dataLength, 1);
- g.WriteBytes(items[i].data, items[i].dataLength);
+ g.WriteBytes(&item.dataLength, 1);
+ g.WriteBytes(item.data, item.dataLength);
g.WriteBytes(&null_byte, 1);
break;
default:
- g.WriteBytes(items[i].data, items[i].dataLength);
+ g.WriteBytes(item.data, item.dataLength);
break;
}
}