untested curses number pad fix

This compiles ok but I don't have a number pad to test it with.
This commit is contained in:
PatR
2019-11-27 15:19:52 -08:00
parent a351f90476
commit 919f0e82d8

View File

@@ -920,7 +920,7 @@ curses_convert_keys(int key)
if (iflags.num_pad) { if (iflags.num_pad) {
ret = '7'; ret = '7';
} else { } else {
ret = 'y'; ret = !Cmd.swap_yz ? 'y' : 'z';
} }
break; break;
#ifdef KEY_A3 #ifdef KEY_A3