mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Use correct offset (0x14 instead of 0x18) when clearing the RTC user RAM space
when F2 is pressed in RTC RAM viewer. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1815 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6f4cd6e16a
commit
bd32dee3b9
1 changed files with 1 additions and 1 deletions
|
|
@ -325,7 +325,7 @@ void dbg_rtc(void)
|
|||
case BUTTON_F2:
|
||||
/* clear the user RAM space */
|
||||
for (c = 0; c <= 43; c++)
|
||||
rtc_write(0x18 + c, 0);
|
||||
rtc_write(0x14 + c, 0);
|
||||
break;
|
||||
case BUTTON_OFF:
|
||||
case BUTTON_LEFT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue