| 122 | } |
| 123 | |
| 124 | static void flush_triggered() |
| 125 | { |
| 126 | while (!shared.triggered.empty()) |
| 127 | { |
| 128 | trigger_pair tp = shared.triggered.front(); |
| 129 | shared.triggered.pop_front(); |
| 130 | zEntEvent(tp.origin, tp.origin, tp.event); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | static bool read_bool(const substr& s, bool def) |
| 135 | { |
no test coverage detected