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

3d:: Euclidean dist_alt returns int, not bool

This commit is contained in:
Zeno Rogue 2019-03-01 04:04:40 +01:00
parent ab1e6a9405
commit 1a381d9e1a

View File

@ -534,7 +534,7 @@ namespace euclid3 {
return true;
}
bool dist_alt(cell *c) {
int dist_alt(cell *c) {
coord co = cubemap()->ispacemap[c->master];
return getcoord(co, 2);
}