dialogs:: itsh(ld) fixed

This commit is contained in:
Zeno Rogue 2019-09-27 18:03:10 +02:00
parent 9ed730e10d
commit ce9f1c02f1
1 changed files with 1 additions and 1 deletions

View File

@ -712,7 +712,7 @@ EX namespace dialog {
}
EX string disp(ld x) {
if(dialogflags & sm::HEXEDIT) return "0x" + itsh(x);
if(dialogflags & sm::HEXEDIT) return "0x" + itsh((unsigned long long)(x));
else if(ne.intval) return its(ldtoint(x));
else return fts(x); }