summaryrefslogtreecommitdiff
path: root/signs.h
diff options
context:
space:
mode:
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();
}