mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
[BugFix] itoa conflicts with mingw rename to itoa_buf
Change-Id: Ife361f2fd8c8946db5bb2e0e58c0981b2ed3c5f3
This commit is contained in:
parent
ee4591d9e7
commit
50da856992
9 changed files with 45 additions and 46 deletions
|
|
@ -611,7 +611,7 @@ static int write_bitmap_number(struct screen * display, int value,
|
|||
int x, int y)
|
||||
{
|
||||
char buf[12], *ptr;
|
||||
itoa(buf, sizeof(buf), value);
|
||||
itoa_buf(buf, sizeof(buf), value);
|
||||
|
||||
for (ptr = buf; *ptr != '\0'; ptr++, x += BM_GLYPH_WIDTH)
|
||||
display->mono_bitmap(bitmap_glyphs_4x8[*ptr - '0'], x, y,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue