-56k o doom- 0 Posted July 20, 2004 it seems with any newish comp ofp wont run unless -nomap is added..... if there are any more patches why not make -nomap always on? Share this post Link to post Share on other sites
Norris 0 Posted July 21, 2004 What is this nomap anyway? I've always used it but never found out what difference it really makes? Share this post Link to post Share on other sites
Mister Frag 0 Posted July 21, 2004 It changes the way that addons are loaded. Unless you use the -nomap switch, OFP will use a WIN32 API that lets it map the contents of a file to virtual address space. With a memory-mapped file, it can be accessed directly using standard C/C++ programming techniques such as pointers, instead of having to allocate a buffer, seek to a particular offset in the file, read a chunk into memory, and then remembering to free the buffer when you're done with it. Obviously memory-mapped access to the file contents is potentially much simpler and faster, but the downside is that it uses a much larger portion of the virtual address space. If you don't have alot of physical memory (RAM) or an insufficiently large pagefile, not all files can be loaded into the virtual address space, and OFP will fail to load. The easiest workaround is the -nomap switch, but if you want to get the best performance, breaking up your addons into multiple MOD folders and using the -mod switch is the way to go. Share this post Link to post Share on other sites
chammy 7 Posted August 17, 2004 Hi all. About nomap, I have been having the same problem. I have been triying to find this "nomap" switch.Can you guys help me?I looked all over for it and cant find it. Share this post Link to post Share on other sites
Placebo 29 Posted August 17, 2004 Picture tells a thousand words as they say Share this post Link to post Share on other sites
theavonlady 2 Posted August 17, 2004 http://www.2and2.net/Uploads/Images/nomap.jpgPicture tells a thousand words as they say  Great! You've limited the search down to somewhere in Windows. Share this post Link to post Share on other sites
Gadger 0 Posted August 17, 2004 He's just showing off with that VBS1 desktop icon again Share this post Link to post Share on other sites
chammy 7 Posted August 17, 2004 Ok, I tried that and I keep getting a messege that the path name is not valid and it wont let me go any further renaming. Share this post Link to post Share on other sites
Placebo 29 Posted August 17, 2004 If you have a space somewhere in the path to the exe you need "" around it, maybe that's your problem? Example below...... "D:\Operation Flashpoint\FLASHPOINTRESISTANCE.EXE" -nosplash -nomap Share this post Link to post Share on other sites
chammy 7 Posted August 17, 2004 Cool, I got it, thanks a million. Share this post Link to post Share on other sites