| 961 | // performs 16-bit blts. |
| 962 | |
| 963 | void TelCom_BltToScreen(int dx, int dy, chunked_bitmap *src_bmp) { |
| 964 | TelCom_BltToScreen(dx, dy, src_bmp, 0, 0, src_bmp->pw, src_bmp->ph); |
| 965 | } |
| 966 | |
| 967 | void TelCom_BltToScreen(int dx, int dy, chunked_bitmap *src_bmp, int sx, int sy, int sw, int sh) { |
| 968 | rend_DrawScaledChunkedBitmap(src_bmp, dx, dy, sw, sh, 255); |
no test coverage detected