Merge pull request #6 from eltoder/help-keys

Tiny change in keyboard shortcuts.
master
Claudio Matsuoka 11 years ago
commit 8df4db3f1d
  1. 5
      src/commands.c
  2. 2
      src/main.c

@ -216,14 +216,15 @@ void read_command(xmp_context handle, struct xmp_module_info *mi, struct control
} }
break; } break; }
case '?': case '?':
case 'c':
case 'i': case 'i':
case 'I': case 'I':
case 'S': case 'S':
case 'm': case 'm':
ctl->display = cmd; ctl->display = cmd;
break; break;
case 'c': case 'h':
ctl->display = cmd; ctl->display = '?';
break; break;
case '>': case '>':
change_sequence(handle, mi, ctl, 1); change_sequence(handle, mi, ctl, 1);

@ -278,6 +278,8 @@ int main(int argc, char **argv)
opt.interp == XMP_INTERP_SPLINE ? "cubic spline interpolated " : "", opt.interp == XMP_INTERP_SPLINE ? "cubic spline interpolated " : "",
opt.format & XMP_FORMAT_MONO ? "mono" : "stereo", opt.format & XMP_FORMAT_MONO ? "mono" : "stereo",
opt.dsp & XMP_DSP_LOWPASS ? "" : " (no filter)"); opt.dsp & XMP_DSP_LOWPASS ? "" : " (no filter)");
report("Press h for help\n\n");
} }
if (opt.probeonly) { if (opt.probeonly) {

Loading…
Cancel
Save