From 3531b7b693fbc5a568be62a5da63516b691c254f Mon Sep 17 00:00:00 2001 From: onefang Date: Fri, 18 Mar 2022 21:10:58 +1000 Subject: Don't run mono with --debug. --- src/sledjchisl/sledjchisl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index b3ea8b3..2c96496 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c @@ -2193,7 +2193,7 @@ void startSim(simData *simd, char *sim, char *type, int count, int window, int p I("Tmux tab [%d:%s](pane %d) tmux ID %s, from %s/%s - %s is starting.", window, type, pane, simd->paneID, scTemp, simd->tab, simd->name); // NOTE - earlier versions of tmux that are still in use don't have the '-T pane title' option, so do it with a printf command. // doTmuxCmd("select-pane -t %s:%s -T '%s'", Tconsole, simd->paneID, simd->tab); - snprintf(toybuf, sizeof(toybuf), "cd %s/current/bin; printf \"\\033]0;%s\\007\"; mono --debug OpenSim.exe -inidirectory=%s/%s", scRoot, simd->tab, scTemp, simd->tab); + snprintf(toybuf, sizeof(toybuf), "cd %s/current/bin; printf \"\\033]0;%s\\007\"; mono OpenSim.exe -inidirectory=%s/%s", scRoot, simd->tab, scTemp, simd->tab); sendTmuxCmd(simd->paneID, toybuf); if (0 == ourSims->doIt) { @@ -9232,7 +9232,7 @@ V("Doing %s for %s '%s' %s %s", modeStrings[currentMode], FLAG(m) ? "member" : I("ROBUST is starting up."); sendTmuxCmd("@0.%1", c); free(c); - c = xmprintf("cd %s/current/bin; printf \"\\033]0;ROBUST\\007\"; mono --debug Robust.exe -inidirectory=%s/config/ROBUST", scRoot, scRoot); + c = xmprintf("cd %s/current/bin; printf \"\\033]0;ROBUST\\007\"; mono Robust.exe -inidirectory=%s/config/ROBUST", scRoot, scRoot); sendTmuxCmd("@0.%1", c); free(c); -- cgit v1.1