forked from dolphin-emu/dolphin
Common: Clean up brace placements
This commit is contained in:
@@ -84,13 +84,15 @@ void SettingsHandler::Reset()
|
||||
|
||||
void SettingsHandler::AddSetting(const std::string& key, const std::string& value)
|
||||
{
|
||||
for (const char& c : key) {
|
||||
for (const char& c : key)
|
||||
{
|
||||
WriteByte(c);
|
||||
}
|
||||
|
||||
WriteByte('=');
|
||||
|
||||
for (const char& c : value) {
|
||||
for (const char& c : value)
|
||||
{
|
||||
WriteByte(c);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user