腐蚀RUST游戏Oops!问题解决方法
oops!the game crashed.解决方案。
运行大量程序时出现“Out of Memory”(内存不足)错误信息。
要解决此问题,增加桌面堆栈的大小即可。
【1】运行注册表编辑器 (Regedt32.exe)。
【2】从 HKEY_LOCAL_MACHINE 子树,转到以下项:
SystemCurrentControlSetControlSession ManagerSubSystems
【3】选择“Windows”值。
【4】在“编辑”菜单中,选择“字符串”。
【5】增加 SharedSection 参数。
【6】对于 Windows NT:
SharedSection 使用以下格式指定系统和桌面堆栈:
SharedSection=xxxx,yyyy
在 yyyy 数字后面添加“,256”或“,512”。
对于 Windows 2000、Windows XP 和 Windows Server 2003:
SharedSection 使用以下格式指定系统和桌面堆栈:
SharedSection=xxxx,yyyy,zzzz
对于 32 位操作系统,将 yyyy 值提高到“12288”;
将 zzzz 值提高到“1024”。
对于 64 位操作系统,将 yyyy 值提高到“20480”;
将 zzzz 值提高到“1024”。
就可以打开游戏了。