summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/group.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/group.h b/src/group.h
index f68306293..8c6667220 100644
--- a/src/group.h
+++ b/src/group.h
@@ -53,14 +53,6 @@ static inline bool IsDefaultGroupID(GroupID index)
return (index == DEFAULT_GROUP);
}
-static inline StringID GetGroupName(GroupID index)
-{
- if (!IsValidGroupID(index)) return STR_NULL;
-
- return GetGroup(index)->string_id;
-}
-
-
#define FOR_ALL_GROUPS_FROM(g, start) for (g = GetGroup(start); g != NULL; g = (g->index + 1U < GetGroupPoolSize()) ? GetGroup(g->index + 1) : NULL) if (IsValidGroup(g))
#define FOR_ALL_GROUPS(g) FOR_ALL_GROUPS_FROM(g, 0)