forked from len0rd/rockbox
Corrected time info when recording
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2884 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4432d3730d
commit
d0c958a861
1 changed files with 3 additions and 2 deletions
|
|
@ -123,11 +123,11 @@ void adjust_cursor(void)
|
||||||
|
|
||||||
unsigned int frame_times[] =
|
unsigned int frame_times[] =
|
||||||
{
|
{
|
||||||
2400, /* 48kHz */
|
|
||||||
2612, /* 44.1kHz */
|
2612, /* 44.1kHz */
|
||||||
|
2400, /* 48kHz */
|
||||||
3600, /* 32kHz */
|
3600, /* 32kHz */
|
||||||
2400, /* 24kHz */
|
|
||||||
2612, /* 22.05kHz */
|
2612, /* 22.05kHz */
|
||||||
|
2400, /* 24kHz */
|
||||||
3200 /* 16kHz */
|
3200 /* 16kHz */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -187,6 +187,7 @@ bool recording_screen(void)
|
||||||
|
|
||||||
while(!done)
|
while(!done)
|
||||||
{
|
{
|
||||||
|
yield();
|
||||||
button = button_get(false);
|
button = button_get(false);
|
||||||
switch(button)
|
switch(button)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue