| 933 | #define SPECIAL_TIMER_ID_LIMIT (SPECIAL_TIMER_ID_BASE + SPECIAL_TIMER_MAX * SPECIAL_TIMER_CLASSES - 1) |
| 934 | |
| 935 | inline int LEVEL_TIMER_UID(uint8_t timer_class, uint8_t index) { |
| 936 | return (SPECIAL_TIMER_ID_BASE + (timer_class % SPECIAL_TIMER_CLASSES) * SPECIAL_TIMER_MAX + index); |
| 937 | } |
| 938 | |
| 939 | void cTimeGlassBreak(int room_number, int portal_num, float time) { |
| 940 | if (breaking_glass_index >= 64) |