Skip to content
Snippets Groups Projects
Commit 4b4d5a50 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix bug in mlong's prextrn mod enhancement

Caused error:
exec.cpp line 805 (sbbs_t::exec_bin) opening "s:\sbbs\exec\ÿÿÿÿÿÿÿÿ.bin" access=0
As reported by Nelgin via IRC at 3AM Texas-time.
parent 68741713
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,7 @@ BOOL read_main_cfg(scfg_t* cfg, char* error)
get_str(cfg->prextrn_mod,instream);
if(cfg->prextrn_mod[0] == '\xff')
SAFECOPY(cfg->postxtrn_mod, "prextrn");
SAFECOPY(cfg->prextrn_mod, "prextrn");
get_str(cfg->postxtrn_mod,instream);
if(cfg->postxtrn_mod[0] == '\xff')
SAFECOPY(cfg->postxtrn_mod, "postxtrn");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment