Mercurial > hg > openttd
diff src/graph_gui.cpp @ 10647:592ae9307430 draft
(svn r14949) -Cleanup: pointer coding style
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sat, 10 Jan 2009 00:31:47 +0000 (2009-01-10) |
parents | 649ba332458f |
children | a4e5b5d2837c |
line wrap: on
line diff
--- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -787,7 +787,7 @@ } /** Sort the company league by performance history */ - static int CDECL PerformanceSorter(const Company* const *c1, const Company* const *c2) + static int CDECL PerformanceSorter(const Company * const *c1, const Company * const *c2) { return (*c2)->old_economy[1].performance_history - (*c1)->old_economy[1].performance_history; }