mirror of
https://github.com/glest/glest-source.git
synced 2025-09-01 04:01:47 +02:00
Bugfixes for 3.3.4 defects found:
- Fog of War always turned off in scenarios and tutorials - memory cleanup in join menu - removed dsound.dll copying from batch file
This commit is contained in:
@@ -25,7 +25,7 @@ using namespace Shared::Platform;
|
||||
namespace Glest{ namespace Game{
|
||||
|
||||
const string mailString= "contact_game@glest.org";
|
||||
const string glestVersionString= "v3.3.4";
|
||||
const string glestVersionString= "v3.3.4.1";
|
||||
|
||||
string getCrashDumpFileName(){
|
||||
return "glest"+glestVersionString+".dmp";
|
||||
|
@@ -46,7 +46,9 @@ private:
|
||||
public:
|
||||
|
||||
|
||||
GameSettings() { }
|
||||
GameSettings() {
|
||||
fogOfWar = true;
|
||||
}
|
||||
|
||||
// default copy constructor will do fine, and will maintain itself ;)
|
||||
|
||||
|
@@ -43,6 +43,7 @@ MenuStateJoinGame::MenuStateJoinGame(Program *program, MainMenu *mainMenu, bool
|
||||
Lang &lang= Lang::getInstance();
|
||||
Config &config= Config::getInstance();
|
||||
NetworkManager &networkManager= NetworkManager::getInstance();
|
||||
networkManager.end();
|
||||
|
||||
serversSavedFile = serverFileName;
|
||||
if(getGameReadWritePath() != "") {
|
||||
|
Reference in New Issue
Block a user