mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 17:40:36 +00:00
fixed key conflict in 3D menu
This commit is contained in:
parent
3b08b0c7fb
commit
4a8ec3b3c4
@ -1373,7 +1373,7 @@ void show3D() {
|
|||||||
dialog::editNumber(mouseaim_sensitivity, -1, 1, 0.002, 0.01, XLAT("mouse aiming sensitivity"), "set to 0 to disable");
|
dialog::editNumber(mouseaim_sensitivity, -1, 1, 0.002, 0.01, XLAT("mouse aiming sensitivity"), "set to 0 to disable");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
dialog::addSelItem(XLAT("camera rotation"), fts(vid.camera_angle), 's');
|
dialog::addSelItem(XLAT("camera rotation"), fts(vid.camera_angle), 'x');
|
||||||
if(DIM == 2) {
|
if(DIM == 2) {
|
||||||
dialog::addSelItem(XLAT("fixed facing"), vid.fixed_facing ? fts(vid.fixed_facing_dir) : XLAT("OFF"), 'f');
|
dialog::addSelItem(XLAT("fixed facing"), vid.fixed_facing ? fts(vid.fixed_facing_dir) : XLAT("OFF"), 'f');
|
||||||
dialog::add_action([] () { vid.fixed_facing = !vid.fixed_facing;
|
dialog::add_action([] () { vid.fixed_facing = !vid.fixed_facing;
|
||||||
|
Loading…
Reference in New Issue
Block a user