1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-19 16:07:40 +00:00

replaced some instances of double to ld, so that everything compiles when ld is redefined to float

This commit is contained in:
Zeno Rogue
2019-05-04 18:28:03 +02:00
parent aefea03ce1
commit 6e26508a77
8 changed files with 15 additions and 15 deletions

View File

@@ -1029,7 +1029,7 @@ void addNewPoints() {
return;
}
double dist = hdist0(points[qvalid]->h) + .1e-6;
ld dist = hdist0(points[qvalid]->h) + .1e-6;
int oqvalid = qvalid;