(int xVal)
| 225 | public static int hblankOffsetY = 1; |
| 226 | |
| 227 | private void draw(int xVal) { |
| 228 | if (lineDirty || forceRedrawRowCount > 0 || currentWriter.isRowDirty(y)) { |
| 229 | lineDirty = true; |
| 230 | currentWriter.displayByte(video, xVal, y, textOffset[y], hiresOffset[y]); |
| 231 | } |
| 232 | doPostDraw(); |
| 233 | } |
| 234 | |
| 235 | static public int calculateHiresOffset(int y) { |
| 236 | return calculateTextOffset(y >> 3) + ((y & 7) << 10); |
no test coverage detected