| 1273 | } |
| 1274 | |
| 1275 | void BltBmpToScreen(int dx, int dy, chunked_bitmap *src_bmp) { |
| 1276 | BltBmpToScreen(dx, dy, src_bmp, 0, 0, src_bmp->pw, src_bmp->ph); |
| 1277 | } |
| 1278 | void BltBmpToScreen(int dx, int dy, chunked_bitmap *src_bmp, int sx, int sy, int sw, int sh) { |
| 1279 | rend_DrawChunkedBitmap(src_bmp, dx, dy, 255); |
| 1280 | } |
no test coverage detected