From f594f0c98acbd40da11354c7e1902a40c3fdf7a2 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 16 Nov 2017 08:43:38 -0800 Subject: [PATCH] SCP: Be sure to call optional sim_vm_post in remote console sessions --- sim_console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sim_console.c b/sim_console.c index 134d379f..52c1ac49 100644 --- a/sim_console.c +++ b/sim_console.c @@ -879,6 +879,8 @@ stat = sim_rem_active_command->action (sim_rem_active_command->arg, cptr);/* exe if (stat != SCPE_OK) stat = _sim_rem_message (gbuf, stat); /* display results */ sim_last_cmd_stat = SCPE_BARE_STATUS(stat); +if (sim_vm_post != NULL) /* optionally let the simulator know */ + (*sim_vm_post) (TRUE); /* something might have changed */ if (!sim_processing_event) { sim_ttrun (); /* set console mode */ sim_cancel (rem_con_data_unit); /* force immediate activation of sim_rem_con_data_svc */