----------------------------------------------------------------------------
| 520 | } |
| 521 | //---------------------------------------------------------------------------- |
| 522 | void StateRecorderDialog_t::updateRecorderStatusLabel(void) |
| 523 | { |
| 524 | bool isRunning = FCEU_StateRecorderRunning(); |
| 525 | |
| 526 | if (isRunning) |
| 527 | { |
| 528 | recStatusLbl->setText( tr("Recording") ); |
| 529 | } |
| 530 | else |
| 531 | { |
| 532 | recStatusLbl->setText( tr("Off") ); |
| 533 | } |
| 534 | } |
| 535 | //---------------------------------------------------------------------------- |
| 536 | void StateRecorderDialog_t::updateStatusDisplay(void) |
| 537 | { |
nothing calls this directly
no test coverage detected