diff options
author | rubidium <rubidium@openttd.org> | 2008-04-18 04:37:06 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-18 04:37:06 +0000 |
commit | 9d8fa486af824039fae197212d83365242511da5 (patch) | |
tree | 31dd8caca4df193a4a2d7a3cd1ef2974e1a2b5a0 /src/ai/default | |
parent | 6daaf0fc5565599f9c87b431a69cdcbb91ed74ac (diff) | |
download | openttd-9d8fa486af824039fae197212d83365242511da5.tar.xz |
(svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
Diffstat (limited to 'src/ai/default')
-rw-r--r-- | src/ai/default/default.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp index ed7f103a2..70d470d63 100644 --- a/src/ai/default/default.cpp +++ b/src/ai/default/default.cpp @@ -3995,11 +3995,11 @@ void AiDoGameLoop(Player *p) if (_players_ai[p->index].state != old_state) { if (hasdots) printf("\n"); - hasdots=false; + hasdots = false; printf("AiState: %s\n", _ai_state_names[old_state=_players_ai[p->index].state]); } else { printf("."); - hasdots=true; + hasdots = true; } } #endif |