| 303 | } |
| 304 | |
| 305 | void CValveMenuDisplay::DrawTitle(const char *text, bool onlyIfEmpty/* =false */) |
| 306 | { |
| 307 | if (onlyIfEmpty && m_TitleDrawn) |
| 308 | { |
| 309 | return; |
| 310 | } |
| 311 | |
| 312 | m_pKv->SetString("msg", text); |
| 313 | m_TitleDrawn = true; |
| 314 | } |
| 315 | |
| 316 | bool CValveMenuDisplay::DrawRawLine(const char *rawline) |
| 317 | { |
no test coverage detected