View Single Post
Old 08-07-2010, 01:30 AM   #2
RF-Fab
 
RF-Fab's Avatar
 
Rune Forge
Join Date: Jul 2010
Reputation: 23
Posts: 107
1. Game crashes during saving the game

If the game often crashes (mostly during saving procedure) and you're running a 32bit OS the crash might be caused by the fact, that 32bit operating systems only provide an address space of 2GB to every userprocess (no matter if it's a game or a notepad).
If Renaissance needs more than these 2GB of virtual address space the game crashes. Because saving the game needs a bit more memory for a short time period the game mostly crashes there.
In order to configure your operating system to give more address space to userprocesses you can do the following:

Windows XP:
Quote:
Start=>Run=>Enter sysdm.cpl and press ENTER
In the new form click
Advanced=>Startup and Recovery Settings=>Edit

Now you're editing the boot.ini. Be careful and do exactly(!) what is written here.
Search for the entry of your operating system and add "/3GB /USERVA=2990" at the end of the line. The whole thing should now look similar to:

Code:
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect /3GB /USERVA=2800
Now all you have to do is rebooting your system.
Windows Vista:
Quote:
Click on Start->All Programs->Accessories
Now right click on Command Prompt and select "Run as administrator"

Now the command prompt should open where you type the following command:

bcdedit /set IncreaseUserVA 2800

Now press enter and reboot your system.
Windows 7:
Quote:
Click on Start->All Programs->Accessories
Now right click on Command Prompt and select "Run as administrator"

Now the command prompt should open where you type the following command:

bcdedit /set increaseuserva 2800

Now press enter and reboot your system.
This guide does not only apply if your system has more than 2GB of memory. The RAM is only the physical memory while the memory the OS provides is virtual memory that also uses your page file.

Last edited by RF-Fab: 09-03-2010 at 12:48 PM.
RF-Fab is offline