1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-20 11:54:48 +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:
return xpush(bw*(4.5-j)) * zpush(-1) * ypush(bw*(i-7));
default:
throw hr_wrong_dir;
throw hr_wrong_dir();
}
}
default: throw hr_wrong_geometry;
default: throw hr_wrong_geometry();
}
}