1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-02-03 07:11:02 +00:00

KA10: Fix SHOW IMX bug.

Display channels in octal instead of decimal.
This commit is contained in:
Lars Brinkhoff
2020-02-29 22:39:20 -05:00
committed by Richard Cornwell
parent 454bc6feb3
commit a007322374

View File

@@ -325,7 +325,7 @@ t_stat imx_show_channel (FILE *st, UNIT *uptr, int32 val, CONST void *desc)
} else
negate = "";
fprintf (st, "%sCHANNEL=%d;JOY%d;AXIS%d%s", comma, chan, i, j, negate);
fprintf (st, "%sCHANNEL=%o;JOY%d;AXIS%d%s", comma, chan, i, j, negate);
comma = ", ";
nothing = 0;
}