From e57ab1ec6de6f6cd935c83e356146c4bd99ad471 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 5 Dec 2025 15:04:14 +0100 Subject: [PATCH] Added the key bind for the new toolbar button, defaults to Ctrl+Alt+I. --- src/86box.c | 5 +++++ src/include/86box/86box.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index 020cb6090..ba42fb748 100644 --- a/src/86box.c +++ b/src/86box.c @@ -293,6 +293,11 @@ struct accelKey def_acc_keys[NUM_ACCELS] = { .name="mute", .desc="Toggle mute", .seq="Ctrl+Alt+M" + }, + { + .name="force_interpretation", + .desc="Force interpretation", + .seq="Ctrl+Alt+I" } }; diff --git a/src/include/86box/86box.h b/src/include/86box/86box.h index 12eb5dbb5..67ba5ec1b 100644 --- a/src/include/86box/86box.h +++ b/src/include/86box/86box.h @@ -330,7 +330,7 @@ struct accelKey { char desc[64]; char seq[64]; }; -#define NUM_ACCELS 9 +#define NUM_ACCELS 10 extern struct accelKey acc_keys[NUM_ACCELS]; extern struct accelKey def_acc_keys[NUM_ACCELS]; extern int FindAccelerator(const char *name);