Savegames: Include *.ocf directories in Origin, not *.c4f

Günther Brammer 2011-05-15 19:32:39 +02:00
parent c857c1770b
commit 35a8667672
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ const char *GetC4Filename(const char *szPath)
{
if (*pPos==DirectorySeparator || *pPos=='/')
{
if (pPos >= szPath+4 && SEqual2NoCase(pPos-4, ".c4")) return pFilename;
if (pPos >= szPath+4 && SEqual2NoCase(pPos-4, ".oc")) return pFilename;
pFilename = pPos+1;
}
}