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

intra:: fixed an incorrect mention of scale

This commit is contained in:
Zeno Rogue 2024-11-07 21:43:07 +01:00
parent 6191705fcd
commit 5bc2245f45

View File

@ -541,7 +541,7 @@ EX void shift_view_portal(hyperpoint H) {
// println(hlog, "maxv = ", maxv);
shift_view(H * maxv * scale);
check_portal_movement();
shift_view_portal(H * (1 - maxv) * scale);
shift_view_portal(H * (1 - maxv));
}
EX const connection_data* through_portal() {