Wait for everything to sync. Nothing is asynchronous, so we just * ask for a key to be pressed. */
| 2176 | * ask for a key to be pressed. |
| 2177 | */ |
| 2178 | void |
| 2179 | amii_wait_synch(void) |
| 2180 | { |
| 2181 | if (!amiIDisplay || amiIDisplay->rawprint) { |
| 2182 | if (amiIDisplay) |
| 2183 | amiIDisplay->rawprint = 0; |
| 2184 | } else { |
| 2185 | if (WIN_MAP != WIN_ERR) { |
| 2186 | display_nhwindow(WIN_MAP, TRUE); |
| 2187 | flush_glyph_buffer(amii_wins[WIN_MAP]->win); |
| 2188 | } |
| 2189 | } |
| 2190 | } |
| 2191 | |
| 2192 | void |
| 2193 | amii_setclipped(void) |
nothing calls this directly
no test coverage detected