| 1972 | } |
| 1973 | |
| 1974 | void |
| 1975 | removetopl(int cnt) |
| 1976 | { |
| 1977 | struct amii_WinDesc *cw = amii_wins[WIN_MESSAGE]; |
| 1978 | /* NB - this is sufficient for |
| 1979 | * yn_function, but that's it |
| 1980 | */ |
| 1981 | if (cw->curx < cnt) |
| 1982 | cw->curx = 0; |
| 1983 | else |
| 1984 | cw->curx -= cnt; |
| 1985 | |
| 1986 | amii_curs(WIN_MESSAGE, cw->curx + 1, cw->cury); |
| 1987 | amii_cl_end(cw, cw->curx); |
| 1988 | } |
| 1989 | /*#endif /* AMIGA_INTUITION */ |
| 1990 | |
| 1991 | #ifdef PORT_HELP |
no test coverage detected