1
0
Fork 0
forked from len0rd/rockbox

Added %% as an available tag to the Custom WPS. Displays % when used

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1909 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Justin Heiner 2002-08-22 03:02:59 +00:00
parent fac7852300
commit b10017e3e8
2 changed files with 4 additions and 1 deletions

View file

@ -315,7 +315,9 @@ int wps_load_custom_config(void)
id3->elapsed / 60000,
id3->elapsed % 60000 / 1000);
break;
case '%': /* Displays % */
snprintf(tmpbuf, sizeof(tmpbuf), "%%");
break;
}
break;
default:

View file

@ -24,5 +24,6 @@
extern bool keys_locked;
int wps_show(void);
int wps_load_custom_config(void);
#endif