1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-26 01:50:36 +00:00

fixed point_direction

This commit is contained in:
Zeno Rogue 2022-10-27 10:12:14 +02:00
parent 0c22ab2b4b
commit f606174445

View File

@ -5104,6 +5104,8 @@ EX void precise_mouseover() {
point_direction = pd; point_direction = pd;
if(cmode & sm::EDIT_INSIDE_WALLS) { if(cmode & sm::EDIT_INSIDE_WALLS) {
swap(mouseover, mouseover2); swap(mouseover, mouseover2);
}
else {
point_direction =c->c.spin(pd); point_direction =c->c.spin(pd);
} }
return; return;