Skip to content

Commit

Permalink
Use pipes in if for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
techtonik committed Mar 3, 2016
1 parent 1516ab6 commit a1dfb99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wesnoth.cpp
Expand Up @@ -983,7 +983,7 @@ int main(int argc, char** argv)
// running before then if requested, so just perform a trivial search
// here and let program_options ignore the switch later.
for(size_t k = 0; k < args.size(); ++k) {
if(args[k] == "--wconsole" or args[k] == "--help") {
if(args[k] == "--wconsole" || args[k] == "--help") {
lg::enable_native_console_output();
break;
}
Expand Down

0 comments on commit a1dfb99

Please sign in to comment.