mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 01:52:30 +00:00
fix(system/file): remove duplicate flag expansion
This commit is contained in:
parent
cdc146f06e
commit
8068d515df
1 changed files with 0 additions and 1 deletions
|
|
@ -135,7 +135,6 @@ HANDLE Open(const char* systemPath, uint32_t flags, bool nocache) {
|
|||
bool write = flags & BC_FILE_OPEN_WRITE;
|
||||
bool shareRead = flags & BC_FILE_OPEN_SHARE_READ;
|
||||
bool shareWrite = flags & BC_FILE_OPEN_SHARE_WRITE;
|
||||
bool write = flags & BC_FILE_OPEN_WRITE;
|
||||
bool mustNotExist = flags & BC_FILE_OPEN_MUST_NOT_EXIST;
|
||||
bool mustExist = flags & BC_FILE_OPEN_MUST_EXIST;
|
||||
bool create = flags & BC_FILE_OPEN_CREATE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue