summaryrefslogtreecommitdiffstats
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 5ae6769b4d..41507708d4 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1204,10 +1204,10 @@ bool dbg_ports(void)
#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
line++;
- snprintf(buf, sizeof(buf), "BATT: %02x UNK1: %02x", adc_read(ADC_BATTERY),
+ snprintf(buf, sizeof(buf), "BATT: %03x UNK1: %03x", adc_read(ADC_BATTERY),
adc_read(ADC_UNKNOWN_1));
lcd_puts(0, line++, buf);
- snprintf(buf, sizeof(buf), "REM: %02x PAD: %02x", adc_read(ADC_REMOTE),
+ snprintf(buf, sizeof(buf), "REM: %03x PAD: %03x", adc_read(ADC_REMOTE),
adc_read(ADC_SCROLLPAD));
lcd_puts(0, line++, buf);
#elif defined(SANSA_E200)