aboutsummaryrefslogtreecommitdiff
path: root/board/samsung
diff options
context:
space:
mode:
authorPrzemyslaw Marczak <p.marczak@samsung.com>2014-04-30 13:28:09 +0200
committerMinkyu Kang <mk7.kang@samsung.com>2014-05-07 19:40:39 +0900
commitf418a1cfc84e19d82730876594806931bf48e24a (patch)
tree949ebde9f6f25d77736f4fd22210ff909b46bafa /board/samsung
parent0954dd61baebcd2de627803ed8e00cc70d9e8b0c (diff)
samsung: misc: menu: increase delay in menu main loop
Increase menu loop delay to 200 ms helps choose the right menu option by user. Before this, each time key was pressed the current menu option was changed few times. Now it changes only once and also changes few times if key is pressed for a longer time. Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung')
-rw-r--r--board/samsung/common/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c
index 65b5c3052..2ea275ee7 100644
--- a/board/samsung/common/misc.c
+++ b/board/samsung/common/misc.c
@@ -285,7 +285,7 @@ static void download_menu(void)
display_download_menu(mode);
last_mode = mode;
- mdelay(100);
+ mdelay(200);
key = check_keys();
switch (key) {