mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-11 22:22:33 -05:00
Lcd mode selecting between top 16 and bottom 16 lines being dropped by
using the hold button. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6133 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ca2e99b4be
commit
3e60b5a6d1
1 changed files with 4 additions and 5 deletions
|
|
@ -119,13 +119,12 @@ void ev_poll(void)
|
|||
}
|
||||
if(pressed & ROCKBOY_MENU) {
|
||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
||||
if (do_user_menu() == USER_MENU_QUIT) {
|
||||
if (do_user_menu() == USER_MENU_QUIT)
|
||||
#endif
|
||||
{
|
||||
die("");
|
||||
cleanshut=1;
|
||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -139,11 +138,11 @@ void vid_setpal(int i, int r, int g, int b)
|
|||
(void)b;
|
||||
}
|
||||
|
||||
void vid_init(void)
|
||||
void vid_begin(void)
|
||||
{
|
||||
}
|
||||
|
||||
void vid_begin(void)
|
||||
void vid_init(void)
|
||||
{
|
||||
fb.pelsize=1; // 8 bit framebuffer.. (too much.. but lowest gnuboy will support.. so yea...
|
||||
fb.h=144;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue