mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +00:00
append support added to cfopen
This commit is contained in:
parent
8bbd7bc13a
commit
fc40da217e
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ CF_Open (const char *path, const char *mode)
|
|||
return -1;
|
||||
}
|
||||
|
||||
if (!(strequal(mode, "w") || strequal(mode, "r"))) {
|
||||
if (!(strequal(mode, "w") || strequal(mode, "r") || strequal(mode, "a"))) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue