1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

dialogs:: itsh(ld) fixed

This commit is contained in:
Zeno Rogue 2019-09-27 18:03:10 +02:00
parent 9ed730e10d
commit ce9f1c02f1

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); }