summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2009-01-07 21:51:37 +0000
committerSimon Howard2009-01-07 21:51:37 +0000
commited880ffdea8f9d69b2b3711785ed8cb4ac8fbec2 (patch)
tree73e52db6b5addcfefd14df3b9eab11f7c46438d1 /src
parentacd1a13a4f70973d7616df3f6de43f8f79b8e392 (diff)
downloadchocolate-doom-ed880ffdea8f9d69b2b3711785ed8cb4ac8fbec2.tar.gz
chocolate-doom-ed880ffdea8f9d69b2b3711785ed8cb4ac8fbec2.tar.bz2
chocolate-doom-ed880ffdea8f9d69b2b3711785ed8cb4ac8fbec2.zip
Replace -nommap with -mmap; do not use mmap()ed file access by default.
Fixes Plutonia 2, and several other minor things. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1425
Diffstat (limited to 'src')
-rw-r--r--src/w_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w_file.c b/src/w_file.c
index bd1a99bd..2a902b07 100644
--- a/src/w_file.c
+++ b/src/w_file.c
@@ -59,11 +59,11 @@ wad_file_t *W_OpenFile(char *path)
int i;
//!
- // Do not use the OS's virtual memory subsystem to map WAD files
+ // Use the OS's virtual memory subsystem to map WAD files
// directly into memory.
//
- if (M_CheckParm("-nommap") > 0)
+ if (M_CheckParm("-mmap") < 0)
{
return stdc_wad_file.OpenFile(path);
}
@@ -72,7 +72,7 @@ wad_file_t *W_OpenFile(char *path)
result = NULL;
- for (i=0; i<arrlen(wad_file_classes); ++i)
+ for (i=0; i<arrlen(wad_file_classes); ++i)
{
result = wad_file_classes[i]->OpenFile(path);