mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-11 16:37:45 -04:00
Fix yellow in c72ffa7a9a ("diacritic: Critical bugfixes")
Change-Id: Ie780cab7e9926165cab1e48319c6743e3b6accb1
This commit is contained in:
parent
a2b754d829
commit
9605b453da
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ bypass:
|
|||
if (is_rtl)
|
||||
*is_rtl = ((DIAC_RTL & info) == DIAC_RTL);
|
||||
|
||||
return (char_code < (diac->base + (info & DIAC_CNT)));
|
||||
return char_code < (uint32_t)(diac->base + (info & DIAC_CNT));
|
||||
}
|
||||
#else /*BOOTLOADER*/
|
||||
inline bool is_diacritic(const ucschar_t char_code, bool *is_rtl)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue