1
0
Fork 0
forked from len0rd/rockbox

unwarminder: make SP and PC visible on smaller screens

Change-Id: I78c0e6edb1ad097154885b9fa93d74616047cbc1
This commit is contained in:
Marcin Bukat 2012-09-05 08:52:39 +02:00
parent 49cded1704
commit a46e0b02c1

View file

@ -110,7 +110,7 @@ void backtrace(int pcAddr, int spAddr, unsigned *line)
{ {
UnwResult r; UnwResult r;
lcd_putsf(0, (*line)++, "bt pc: %08x, sp: %08x", pcAddr, spAddr); lcd_putsf(0, (*line)++, "pc:%08x sp:%08x", pcAddr, spAddr);
lcd_update(); lcd_update();
r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line); r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line);