Skip to content

Commit

Permalink
Fixed typos in previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Sep 3, 2011
1 parent f0a251b commit 9d321ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/fs_main.c
Expand Up @@ -844,7 +844,7 @@ lumpnum_t F_OpenAuxiliary3(const char* path, DFILE* prevOpened, boolean silent)
}

memset(&temp, 0, sizeof(temp));
temp.flags._open = true;
temp.flags.open = true;
temp.lastModified = readLastModified(Str_Text(foundPath));
temp.hndl = file;
prevOpened = &temp;
Expand Down Expand Up @@ -1785,7 +1785,7 @@ static abstractfile_t* F_AddFile2(const char* fileName, boolean allowDuplicate)
}

memset(&temp, 0, sizeof(temp));
temp.flags._open = true;
temp.flags.open = true;
temp.hndl = file;
temp.lastModified = readLastModified(Str_Text(foundPath));

Expand Down

0 comments on commit 9d321ea

Please sign in to comment.