| 46 | } |
| 47 | |
| 48 | void XPM::FillRun(Surface *surface, int code, int startX, int y, int x) { |
| 49 | if ((code != codeTransparent) && (startX != x)) { |
| 50 | PRectangle rc(startX, y, x, y+1); |
| 51 | surface->FillRectangle(rc, ColourFromCode(code)); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | XPM::XPM(const char *textForm) { |
| 56 | Init(textForm); |
nothing calls this directly
no test coverage detected