Patch level : 2.0 688

Files correlati     : ef0.exe
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@11773 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2004-02-23 15:27:24 +00:00
parent df1c495fd2
commit d3b23c8c74

@ -1289,7 +1289,6 @@ bool TFilename::input()
bool TFilename::custom_path(const char* path_list)
{
bool ok = false;
if (!is_absolute_path())
{
TToken_string pl = path_list;
@ -1314,14 +1313,11 @@ bool TFilename::custom_path(const char* path_list)
if (cust.exist())
{
set(cust);
ok = true;
break;
return true;
}
}
}
else
ok = exist();
return ok;
return exist();
}
///////////////////////////////////////////////////////////