mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-15 08:02:34 -05:00
fix 64bit warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24923 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4c6b3551b5
commit
92f0aa85fc
1 changed files with 2 additions and 1 deletions
|
|
@ -162,7 +162,8 @@ static void toggle_theme(enum screen_type screen, bool force)
|
|||
screens[screen].update_viewport();
|
||||
}
|
||||
}
|
||||
send_event(GUI_EVENT_ACTIONUPDATE, (void*)!first_boot);
|
||||
intptr_t force = first_boot?0:1;
|
||||
send_event(GUI_EVENT_ACTIONUPDATE, (void*)force);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue