summaryrefslogtreecommitdiff
path: root/src/newgrf_config.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-12 18:41:53 +0000
committerrubidium <rubidium@openttd.org>2014-10-12 18:41:53 +0000
commit771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809 (patch)
treee7c1e9afe60baf165648954cde2110ad598aefbd /src/newgrf_config.cpp
parentfddeeb5e49f5daee49d79210dcfa1c845ff4a0d5 (diff)
downloadopenttd-771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809.tar.xz
(svn r27003) -Cleanup: fix the use of spaces and asterices "around" some comments
Diffstat (limited to 'src/newgrf_config.cpp')
-rw-r--r--src/newgrf_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp
index 6b7b8c377..18f47b64a 100644
--- a/src/newgrf_config.cpp
+++ b/src/newgrf_config.cpp
@@ -735,8 +735,8 @@ void DoScanNewGRFFiles(void *callback)
DEBUG(grf, 1, "Scan complete, found %d files", num);
if (num != 0 && _all_grfs != NULL) {
/* Sort the linked list using quicksort.
- * For that we first have to make an array, then sort and
- * then remake the linked list. */
+ * For that we first have to make an array, then sort and
+ * then remake the linked list. */
GRFConfig **to_sort = MallocT<GRFConfig*>(num);
uint i = 0;