diff options
author | onefang | 2022-03-18 21:10:58 +1000 |
---|---|---|
committer | onefang | 2022-03-18 21:10:58 +1000 |
commit | 3531b7b693fbc5a568be62a5da63516b691c254f (patch) | |
tree | 9f9e41e5e84d73875737773504e6922402286e74 | |
parent | Bump sledjchisl to version 0.3 (diff) | |
download | opensim-SC-3531b7b693fbc5a568be62a5da63516b691c254f.zip opensim-SC-3531b7b693fbc5a568be62a5da63516b691c254f.tar.gz opensim-SC-3531b7b693fbc5a568be62a5da63516b691c254f.tar.bz2 opensim-SC-3531b7b693fbc5a568be62a5da63516b691c254f.tar.xz |
Don't run mono with --debug.
-rw-r--r-- | src/sledjchisl/sledjchisl.c | 4 |
1 files 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 | |||
2193 | 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); | 2193 | 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); |
2194 | // 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. | 2194 | // 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. |
2195 | // doTmuxCmd("select-pane -t %s:%s -T '%s'", Tconsole, simd->paneID, simd->tab); | 2195 | // doTmuxCmd("select-pane -t %s:%s -T '%s'", Tconsole, simd->paneID, simd->tab); |
2196 | 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); | 2196 | 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); |
2197 | sendTmuxCmd(simd->paneID, toybuf); | 2197 | sendTmuxCmd(simd->paneID, toybuf); |
2198 | if (0 == ourSims->doIt) | 2198 | if (0 == ourSims->doIt) |
2199 | { | 2199 | { |
@@ -9232,7 +9232,7 @@ V("Doing %s for %s '%s' %s %s", modeStrings[currentMode], FLAG(m) ? "member" : | |||
9232 | I("ROBUST is starting up."); | 9232 | I("ROBUST is starting up."); |
9233 | sendTmuxCmd("@0.%1", c); | 9233 | sendTmuxCmd("@0.%1", c); |
9234 | free(c); | 9234 | free(c); |
9235 | c = xmprintf("cd %s/current/bin; printf \"\\033]0;ROBUST\\007\"; mono --debug Robust.exe -inidirectory=%s/config/ROBUST", scRoot, scRoot); | 9235 | c = xmprintf("cd %s/current/bin; printf \"\\033]0;ROBUST\\007\"; mono Robust.exe -inidirectory=%s/config/ROBUST", scRoot, scRoot); |
9236 | sendTmuxCmd("@0.%1", c); | 9236 | sendTmuxCmd("@0.%1", c); |
9237 | free(c); | 9237 | free(c); |
9238 | 9238 | ||