Xlatlocalset warning fixed

This commit is contained in:
Alexander S. Aganichev 2001-09-16 20:36:15 +00:00
parent 7d3cb0f569
commit 07782be14d

View File

@ -536,7 +536,7 @@ void CfgXlatimport() {
void CfgXlatlocalset() { void CfgXlatlocalset() {
strupr(strxcpy(CFG->xlatlocalset, val, sizeof(CFG->xlatlocalset))); strupr(strxcpy(CFG->xlatlocalset, val, sizeof(CFG->xlatlocalset)));
if(strieql(CFG->xlatlocalset, "IBMPC") or strieql(CFG->xlatlocalset, "+7_FIDO")) { if(CFG->usecharset and (strieql(CFG->xlatlocalset, "IBMPC") or strieql(CFG->xlatlocalset, "+7_FIDO"))) {
std::cout << "* Warning: Charset " << CFG->xlatlocalset << " is obsolete. Consider using CPxxx form." << std::endl; std::cout << "* Warning: Charset " << CFG->xlatlocalset << " is obsolete. Consider using CPxxx form." << std::endl;
cfgerrors++; cfgerrors++;
} }