- pick the proper dot for cutting off the extension in ExtractFileBase.

This commit is contained in:
Christoph Oelckers 2021-05-17 13:11:41 +02:00
parent 6071cf66cc
commit 6e9c85791c
1 changed files with 1 additions and 6 deletions

View File

@ -331,13 +331,8 @@ FString ExtractFileBase (const char *path, bool include_extension)
}
#endif
if (!include_extension)
if (!include_extension && (dot = strrchr(src, '.')))
{
dot = src;
while (*dot && *dot != '.')
{
dot++;
}
return FString(src, dot - src);
}
else