summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:21:16 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:21:16 +0000
commit02c79d37a3c71ced952a855ac3262cf253db8a94 (patch)
treeb72f147c6e7a1b4b4ac909d28eb1a0dfcfb5c90a
parent393f427a112687aa3d17b4fd33dfe402ef11f3c5 (diff)
downloadrockbox-02c79d37a3c71ced952a855ac3262cf253db8a94.tar.gz
rockbox-02c79d37a3c71ced952a855ac3262cf253db8a94.zip
dbg_pcf(): use action_userabort
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31561 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 48664a1762..cc76d24d18 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -785,7 +785,7 @@ static bool dbg_pcf(void)
785 lcd_putsf(0, line++, "D3REGC: %02x", pcf50605_read(0x26)); 785 lcd_putsf(0, line++, "D3REGC: %02x", pcf50605_read(0x26));
786 lcd_putsf(0, line++, "LPREG1: %02x", pcf50605_read(0x27)); 786 lcd_putsf(0, line++, "LPREG1: %02x", pcf50605_read(0x27));
787 lcd_update(); 787 lcd_update();
788 if (button_get_w_tmo(HZ/10) == (DEBUG_CANCEL|BUTTON_REL)) 788 if (action_userabort(HZ/10))
789 { 789 {
790 lcd_setfont(FONT_UI); 790 lcd_setfont(FONT_UI);
791 return false; 791 return false;