fix red led recording state

This commit is contained in:
martii
2012-11-03 18:48:33 +01:00
parent 241de088cb
commit 2f886cae89
2 changed files with 7 additions and 0 deletions

View File

@@ -406,8 +406,12 @@ void cRecord::RecordThread()
int cRecord::GetStatus()
{
#ifdef MARTII
return (exit_flag == RECORD_STOPPED) ? REC_STATUS_STOPPED : REC_STATUS_OK;
#else
/* dummy for now */
return REC_STATUS_OK;
#endif
}
void cRecord::ResetStatus()