| 490 | } |
| 491 | |
| 492 | void CFamiTrackerView::RedrawPatternEditor() |
| 493 | { |
| 494 | // Redraw the pattern editor, partial or full if needed |
| 495 | bool NeedErase = m_pPatternEditor->CursorUpdated(); |
| 496 | |
| 497 | if (NeedErase) |
| 498 | RedrawWindow(NULL, NULL, RDW_INVALIDATE | RDW_ERASE); |
| 499 | else |
| 500 | RedrawWindow(m_pPatternEditor->GetInvalidatedRect(), NULL, RDW_INVALIDATE); |
| 501 | } |
| 502 | |
| 503 | void CFamiTrackerView::RedrawFrameEditor() |
| 504 | { |
nothing calls this directly
no test coverage detected