mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-05 20:26:52 +00:00
hos: Change warmboot storage numbering from dec to hex
This commit is contained in:
parent
2aa1ce5390
commit
7bebec1304
@ -321,10 +321,10 @@ static void _warmboot_filename(char *out, u32 fuses)
|
||||
if (fuses < 16)
|
||||
{
|
||||
out[19] = '0';
|
||||
itoa(fuses, &out[19 + 1], 10);
|
||||
itoa(fuses, &out[19 + 1], 16);
|
||||
}
|
||||
else
|
||||
itoa(fuses, &out[19], 10);
|
||||
itoa(fuses, &out[19], 16);
|
||||
strcat(out, ".bin");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user