MapPath added at some missed points
This commit is contained in:
parent
c8504d1d43
commit
caea34b9ee
@ -332,7 +332,7 @@ void CfgGoldbaseuserno() {
|
|||||||
|
|
||||||
void CfgGoldhelp() {
|
void CfgGoldhelp() {
|
||||||
|
|
||||||
strxcpy(CFG->helpcfg.fn, val, sizeof(Path));
|
MapPath(strxcpy(CFG->helpcfg.fn, val, sizeof(Path)));
|
||||||
replaceextension(CFG->helpged, CFG->helpcfg.fn, __gver_cfgext__);
|
replaceextension(CFG->helpged, CFG->helpcfg.fn, __gver_cfgext__);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -340,20 +340,21 @@ void CfgGoldhelp() {
|
|||||||
|
|
||||||
void CfgGoldlang() {
|
void CfgGoldlang() {
|
||||||
|
|
||||||
strxcpy(CFG->langcfg, val, sizeof(Path));
|
MapPath(strxcpy(CFG->langcfg, val, sizeof(Path)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgGoldpath() {
|
void CfgGoldpath() {
|
||||||
|
|
||||||
PathCopy(CFG->goldpath, val);
|
MapPath(PathCopy(CFG->goldpath, val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgGoldxlat() {
|
void CfgGoldxlat() {
|
||||||
|
|
||||||
|
MapPath(val);
|
||||||
replaceextension(CFG->xlatged, val, __gver_cfgext__);
|
replaceextension(CFG->xlatged, val, __gver_cfgext__);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -546,7 +546,7 @@ void CfgXlatlocalset() {
|
|||||||
|
|
||||||
void CfgXlatpath() {
|
void CfgXlatpath() {
|
||||||
|
|
||||||
PathCopy(CFG->xlatpath, val);
|
MapPath(PathCopy(CFG->xlatpath, val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user