| 143 | #define MAX_SPEWS_PER_FRAME 5 // maximum number of spews 1 can emit per frame |
| 144 | |
| 145 | static inline int FORM_HANDLE(int counter, int slot) { return (((counter & 0xFF) << 16) + (slot & 0xFF)); } |
| 146 | |
| 147 | static inline int GET_SLOT(int handle) { return (handle & 0xFF); } |
| 148 |