1
0
Fork 0
forked from len0rd/rockbox

The saving flag wasn't correctly handled

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2883 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-11-24 22:50:54 +00:00
parent 063c6d471f
commit 4432d3730d

View file

@ -1734,6 +1734,7 @@ static void mpeg_thread(void)
time to stop for real */
if(stop_pending)
queue_post(&mpeg_queue, MPEG_STOP_DONE, 0);
saving = false;
}
break;
@ -1980,6 +1981,7 @@ void mpeg_record(char *filename)
static void start_recording(void)
{
stop_pending = false;
saving = false;
}
unsigned long mpeg_num_recorded_frames(void)