mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
hos: Change warmboot storage numbering from dec to hex
This commit is contained in:
parent
2aa1ce5390
commit
7bebec1304
1 changed files with 2 additions and 2 deletions
|
@ -321,10 +321,10 @@ static void _warmboot_filename(char *out, u32 fuses)
|
||||||
if (fuses < 16)
|
if (fuses < 16)
|
||||||
{
|
{
|
||||||
out[19] = '0';
|
out[19] = '0';
|
||||||
itoa(fuses, &out[19 + 1], 10);
|
itoa(fuses, &out[19 + 1], 16);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
itoa(fuses, &out[19], 10);
|
itoa(fuses, &out[19], 16);
|
||||||
strcat(out, ".bin");
|
strcat(out, ".bin");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue