(svn r3337) Remove an unused variable and add 2 times static

This commit is contained in:
tron
2005-12-24 20:51:21 +00:00
parent f2db7e7245
commit c11fb56bf7
4 changed files with 3 additions and 4 deletions

View File

@@ -51,8 +51,6 @@ static inline bool IsSignIndex(uint index)
#define FOR_ALL_SIGNS_FROM(ss, start) for (ss = GetSign(start); ss != NULL; ss = (ss->index + 1 < GetSignPoolSize()) ? GetSign(ss->index + 1) : NULL)
#define FOR_ALL_SIGNS(ss) FOR_ALL_SIGNS_FROM(ss, 0)
VARDEF SignStruct *_new_sign_struct;
VARDEF bool _sign_sort_dirty;
VARDEF uint16 *_sign_sort;