mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Made alpine_cdc.rock compile with DEBUG enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5662 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0ff13c0b0d
commit
f07ddacb7d
1 changed files with 4 additions and 2 deletions
|
@ -1135,7 +1135,9 @@ void exit_tsr(void)
|
||||||
int main(void* parameter)
|
int main(void* parameter)
|
||||||
{
|
{
|
||||||
(void)parameter;
|
(void)parameter;
|
||||||
/*int button; */
|
#ifdef DEBUG
|
||||||
|
int button;
|
||||||
|
#endif
|
||||||
int stacksize;
|
int stacksize;
|
||||||
void* stack;
|
void* stack;
|
||||||
|
|
||||||
|
@ -1167,7 +1169,7 @@ int main(void* parameter)
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
button = rb->button_get(true);
|
button = rb->button_get(true);
|
||||||
} while (button & BUTTON_REL));
|
} while (button & BUTTON_REL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
gTread.foreground = false; /* we're in the background now */
|
gTread.foreground = false; /* we're in the background now */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue