mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-12 00:47:49 -04:00
Convert non-ASCII characters to UTF-8 or C-string literals
Comments are converted to UTF-8. Strings which are part of executable code are converted using C-string hex literals. A comment with the intended UTF-8 character is appended to such lines. The "c"-looking character in mpa.c was actually a small cyrillic "s" (i.e. "с"). Change-Id: If3a889080ef60b8bf756ad9ada38baede93ce35b
This commit is contained in:
parent
5d7c8a0df1
commit
1468649258
5 changed files with 25 additions and 25 deletions
|
|
@ -133,9 +133,9 @@ static const struct device_info devices[] =
|
|||
{"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M", 42, null_key_v2},
|
||||
/* Creative Zen Vision:M Go! */
|
||||
{"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M\0 \0G\0o\0!", 50, null_key_v2},
|
||||
/* Creative Zen Vision © TL */
|
||||
/* The "©" should be ANSI encoded or the device won't accept the firmware package. */
|
||||
{"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0 \0©\0T\0L", 46, null_key_v2},
|
||||
/* Creative Zen Vision © TL */
|
||||
/* The "©" should be ANSI encoded or the device won't accept the firmware package. */
|
||||
{"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0 \0\xA9\0T\0L", 46, null_key_v2},
|
||||
/* Creative ZEN V */
|
||||
{"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0E\0N\0 \0V", 42, null_key_v4},
|
||||
/* Creative ZEN */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue