1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 01:20:37 +00:00

f key no longer works outside of normal

This commit is contained in:
Zeno Rogue 2020-01-02 16:52:23 +01:00
parent 0d2e660fa4
commit 66e040bbc9

View File

@ -114,7 +114,7 @@ void get_b4_distance() {
bool trailer_handleKey(int sym, int uni) { bool trailer_handleKey(int sym, int uni) {
if(sym == 'f') { if(sym == 'f' && (cmode & sm::NORMAL)) {
keys_on = !keys_on; keys_on = !keys_on;
println(hlog, "keys_on = ", keys_on); println(hlog, "keys_on = ", keys_on);
return true; return true;