summaryrefslogtreecommitdiff
path: root/src/highscore.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-10 00:31:47 +0000
committerrubidium <rubidium@openttd.org>2009-01-10 00:31:47 +0000
commit11da45ee55957c243854cd78705d81543541c061 (patch)
tree29e703244d28f29c8634b2d30f42b34852fe74bc /src/highscore.cpp
parentc3839648f75ebfdca2f7d95b7d6a2b29445ab1c2 (diff)
downloadopenttd-11da45ee55957c243854cd78705d81543541c061.tar.xz
(svn r14949) -Cleanup: pointer coding style
Diffstat (limited to 'src/highscore.cpp')
-rw-r--r--src/highscore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/highscore.cpp b/src/highscore.cpp
index 9512fc2b9..c109c7539 100644
--- a/src/highscore.cpp
+++ b/src/highscore.cpp
@@ -71,7 +71,7 @@ int8 SaveHighScoreValue(const Company *c)
}
/** Sort all companies given their performance */
-static int CDECL HighScoreSorter(const Company* const *a, const Company* const *b)
+static int CDECL HighScoreSorter(const Company * const *a, const Company * const *b)
{
return (*b)->old_economy[0].performance_history - (*a)->old_economy[0].performance_history;
}
@@ -97,7 +97,7 @@ int8 SaveHighScoreValueNetwork()
/* Copy over Top5 companies */
for (i = 0; i < lengthof(_highscore_table[LAST_HS_ITEM]) && i < count; i++) {
- HighScore* hs = &_highscore_table[LAST_HS_ITEM][i];
+ HighScore *hs = &_highscore_table[LAST_HS_ITEM][i];
SetDParam(0, cl[i]->index);
SetDParam(1, cl[i]->index);