From f06ba22c6c1d31be7dc14e921b5af2c535af4599 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 27 Nov 2022 10:17:44 -1000 Subject: [PATCH] SCELBI: Add missing array bound in sim_stop_messages array Somehow this simulator got missed when this change was made for all other simulators. --- Intel-Systems/scelbi/scelbi_sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intel-Systems/scelbi/scelbi_sys.c b/Intel-Systems/scelbi/scelbi_sys.c index 180ae5be..d0fc4730 100644 --- a/Intel-Systems/scelbi/scelbi_sys.c +++ b/Intel-Systems/scelbi/scelbi_sys.c @@ -62,7 +62,7 @@ DEVICE *sim_devices[] = { NULL }; -const char *sim_stop_messages[] = { +const char *sim_stop_messages[SCPE_BASE] = { "Unknown error", "Unknown I/O Instruction", "HALT instruction",