mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 21:55:10 -05:00
removed an unneeded variable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10835 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bad3a2be4a
commit
a3ff431775
2 changed files with 1 additions and 4 deletions
|
|
@ -288,7 +288,7 @@ int kbd_input(char* text, int buflen)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char outline[256];
|
char outline[256];
|
||||||
int button, lastbutton = 0;
|
int button;
|
||||||
#ifdef HAS_BUTTONBAR
|
#ifdef HAS_BUTTONBAR
|
||||||
struct gui_buttonbar buttonbar;
|
struct gui_buttonbar buttonbar;
|
||||||
bool buttonbar_config = global_settings.buttonbar;
|
bool buttonbar_config = global_settings.buttonbar;
|
||||||
|
|
@ -998,7 +998,6 @@ int kbd_input(char* text, int buflen)
|
||||||
}
|
}
|
||||||
if (button != BUTTON_NONE)
|
if (button != BUTTON_NONE)
|
||||||
{
|
{
|
||||||
lastbutton = button;
|
|
||||||
cur_blink = true;
|
cur_blink = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -556,7 +556,6 @@ static bool dirbrowse(void)
|
||||||
bool exit_func = false;
|
bool exit_func = false;
|
||||||
long thumbnail_time = -1; /* for delaying a thumbnail */
|
long thumbnail_time = -1; /* for delaying a thumbnail */
|
||||||
|
|
||||||
unsigned lastbutton = 0;
|
|
||||||
char* currdir = tc.currdir; /* just a shortcut */
|
char* currdir = tc.currdir; /* just a shortcut */
|
||||||
bool id3db = *tc.dirfilter == SHOW_ID3DB;
|
bool id3db = *tc.dirfilter == SHOW_ID3DB;
|
||||||
|
|
||||||
|
|
@ -871,7 +870,6 @@ static bool dirbrowse(void)
|
||||||
if ( button )
|
if ( button )
|
||||||
{
|
{
|
||||||
ata_spin();
|
ata_spin();
|
||||||
lastbutton = button;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (start_wps && audio_status() )
|
if (start_wps && audio_status() )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue