(svn r27003) -Cleanup: fix the use of spaces and asterices "around" some comments

This commit is contained in:
rubidium
2014-10-12 18:41:53 +00:00
parent 26574124b1
commit 660a95e5d2
21 changed files with 87 additions and 86 deletions

View File

@@ -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;