1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-01 03:39:16 +00:00

missing ()

This commit is contained in:
Zeno Rogue 2021-03-12 23:00:18 +01:00
parent 5f86ed6b4b
commit 15adcdf191

View File

@ -427,11 +427,11 @@ EX namespace sn {
case 8: case 8:
return xpush(bw*(4.5-j)) * zpush(-1) * ypush(bw*(i-7)); return xpush(bw*(4.5-j)) * zpush(-1) * ypush(bw*(i-7));
default: default:
throw hr_wrong_dir; throw hr_wrong_dir();
} }
} }
default: throw hr_wrong_geometry; default: throw hr_wrong_geometry();
} }
} }