summaryrefslogtreecommitdiff
path: root/signs.h
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
committermatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
commite6ade36de112f7a5a89513278e6784ba4f26c79f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /signs.h
parent75ec6d9b777400031fc90b82c8b056166365567b (diff)
downloadopenttd-e6ade36de112f7a5a89513278e6784ba4f26c79f.tar.xz
(svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface.
Diffstat (limited to 'signs.h')
-rw-r--r--signs.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/signs.h b/signs.h
index 0ded78353..9c9fd2982 100644
--- a/signs.h
+++ b/signs.h
@@ -18,13 +18,18 @@ typedef struct Sign {
DECLARE_OLD_POOL(Sign, Sign, 2, 16000)
-static inline SignID GetSignArraySize(void)
+static inline SignID GetMaxSignIndex(void)
{
/* TODO - This isn't the real content of the function, but
* with the new pool-system this will be replaced with one that
- * _really_ returns the highest index + 1. Now it just returns
+ * _really_ returns the highest index. Now it just returns
* the next safe value we are sure about everything is below.
*/
+ return GetSignPoolSize() - 1;
+}
+
+static inline uint GetNumSigns(void)
+{
return GetSignPoolSize();
}