1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Fixed multi-sourced symbol server conflict

This commit is contained in:
Brian Fiete 2020-10-06 07:07:45 -07:00
parent 3b9558a508
commit 8376355098
3 changed files with 4 additions and 7 deletions

View file

@ -2727,11 +2727,8 @@ BFP_EXPORT BfpFile* BFP_CALLTYPE BfpFile_Create(const char* path, BfpFileCreateK
creationDisposition = CREATE_ALWAYS;
}
else if (createKind == BfpFileCreateKind_CreateIfNotExists)
{
if ((createFlags & BfpFileCreateFlag_Append) != 0)
creationDisposition = CREATE_NEW;
else
creationDisposition = TRUNCATE_EXISTING;
{
creationDisposition = CREATE_NEW;
}
else
{