mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
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