Skip to content
Snippets Groups Projects
Commit db2dea66 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use new i64toac() function to support files > 4GB in size

parent 6966a81b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -39,7 +39,7 @@ void sbbs_t::showfileinfo(file_t* f, bool show_extdesc)
bprintf(P_TRUNCATE, text[FiFilename],f->name);
if(getfilesize(&cfg, f) >= 0)
bprintf(P_TRUNCATE, text[FiFileSize], ultoac((ulong)f->size,tmp)
bprintf(P_TRUNCATE, text[FiFileSize], i64toac(f->size,tmp)
, byte_estimate_to_str(f->size, tmp2, sizeof(tmp2), /* units: */1024, /* precision: */1));
bprintf(P_TRUNCATE, text[FiCredits]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment