forked from dolphin-emu/dolphin
Fixes spacing for "for", "while", "switch" and "if"
Also moved && and || to ends of lines instead of start.
Fixed misc vertical alignments and some { needed newlining.
This commit is contained in:
@@ -84,13 +84,13 @@ 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