summaryrefslogtreecommitdiff
path: root/src/network/network_gamelist.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-12-01 13:12:39 +0000
committeralberth <alberth@openttd.org>2012-12-01 13:12:39 +0000
commit732e073261a0c9f2d644475ec800f5acae90ec94 (patch)
treeed921e856ce535c64e5542357fb942192a656df0 /src/network/network_gamelist.cpp
parent01d023ad3bd9f33c702aa523e2b8efbdbe3f61f9 (diff)
downloadopenttd-732e073261a0c9f2d644475ec800f5acae90ec94.tar.xz
(svn r24776) -Doc: Typo fixes, additions, and additional dots collected from various sources (including Eagle_rainbow, MinchinWeb)
Diffstat (limited to 'src/network/network_gamelist.cpp')
-rw-r--r--src/network/network_gamelist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/network_gamelist.cpp b/src/network/network_gamelist.cpp
index 9acc09cd1..949636213 100644
--- a/src/network/network_gamelist.cpp
+++ b/src/network/network_gamelist.cpp
@@ -171,7 +171,7 @@ void NetworkGameListRequery()
void NetworkAfterNewGRFScan()
{
for (NetworkGameList *item = _network_game_list; item != NULL; item = item->next) {
- /* Reset compatability state */
+ /* Reset compatibility state */
item->info.compatible = item->info.version_compatible;
for (GRFConfig *c = item->info.grfconfig; c != NULL; c = c->next) {
@@ -181,13 +181,13 @@ void NetworkAfterNewGRFScan()
if (f == NULL) {
/* Don't know the GRF, so mark game incompatible and the (possibly)
* already resolved name for this GRF (another server has sent the
- * name of the GRF already */
+ * name of the GRF already. */
c->name->Release();
c->name = FindUnknownGRFName(c->ident.grfid, c->ident.md5sum, true);
c->name->AddRef();
c->status = GCS_NOT_FOUND;
- /* If we miss a file, we're obviously incompatible */
+ /* If we miss a file, we're obviously incompatible. */
item->info.compatible = false;
} else {
c->filename = f->filename;