Commit fafdae06 authored by Claes Sjofors's avatar Claes Sjofors

Merge branch 'master' of 62.20.65.89:/data1/git/pwr

parents bcf58497 aec8e800
......@@ -537,6 +537,7 @@ bool Lng::is_installed( lng_eLanguage language)
pwr_tFileName found_file;
pwr_tStatus sts;
strcpy( fname, "$pwr_exe/");
strcat( fname, lang_to_str( language));
strcat( fname, "/xtt_lng.dat");
......@@ -546,6 +547,18 @@ bool Lng::is_installed( lng_eLanguage language)
sts = dcli_search_file( fname, found_file, DCLI_DIR_SEARCH_INIT);
dcli_search_file( fname, found_file, DCLI_DIR_SEARCH_END);
if ( ODD(sts)) return true;
// Try $pwr_eexe also
strcpy( fname, "$pwr_eexe/");
strcat( fname, lang_to_str( language));
strcat( fname, "/xtt_lng.dat");
dcli_translate_filename( fname, fname);
sts = dcli_search_file( fname, found_file, DCLI_DIR_SEARCH_INIT);
dcli_search_file( fname, found_file, DCLI_DIR_SEARCH_END);
if ( ODD(sts)) return true;
return false;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment