Index: head/games/blackshadeselite/files/patch-Source-Config.cpp =================================================================== --- head/games/blackshadeselite/files/patch-Source-Config.cpp (revision 382651) +++ head/games/blackshadeselite/files/patch-Source-Config.cpp (revision 382652) @@ -1,15 +1,26 @@ --- Source/Config.cpp.orig 2007-11-22 01:14:16.000000000 +0300 -+++ Source/Config.cpp 2008-01-28 00:13:47.000000000 +0300 -@@ -44,8 +44,10 @@ ++++ Source/Config.cpp 2015-03-27 01:33:20.608154000 +0300 +@@ -19,6 +19,10 @@ + */ + #include + #include ++#include ++#include ++ ++#include + + #include "Config.h" + +@@ -44,8 +48,10 @@ customlevels = 0; musictoggle = 1; azertykeyboard = 0; - - const char *cfgFile = "config.txt"; + + char cfgFile[PATH_MAX]; + strcpy(cfgFile, getenv("HOME")); + strcat(cfgFile, "/.blackshades.config"); if(!ConfigExist(cfgFile)) { WriteConfig(cfgFile); Index: head/games/blackshadeselite/files/patch-Source_Net_Client.cpp =================================================================== --- head/games/blackshadeselite/files/patch-Source_Net_Client.cpp (nonexistent) +++ head/games/blackshadeselite/files/patch-Source_Net_Client.cpp (revision 382652) @@ -0,0 +1,14 @@ +--- Source/Net/Client.cpp.orig 2007-11-22 01:14:15.000000000 +0300 ++++ Source/Net/Client.cpp 2015-03-27 01:30:41.036397000 +0300 +@@ -2,10 +2,8 @@ + + #define SRV_IP "0.0.0.0" + +-Client::Client() ++Client::Client() : NetCommon() + { +- NetCommon::NetCommon(); +- + memset((char *)&remote_sock, 0, sizeof(remote_sock)); + remote_sock.sin_family = AF_INET; + remote_sock.sin_port = htons(port); Property changes on: head/games/blackshadeselite/files/patch-Source_Net_Client.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/blackshadeselite/files/patch-Source_Net_Server.cpp =================================================================== --- head/games/blackshadeselite/files/patch-Source_Net_Server.cpp (nonexistent) +++ head/games/blackshadeselite/files/patch-Source_Net_Server.cpp (revision 382652) @@ -0,0 +1,13 @@ +--- Source/Net/Server.cpp.orig 2007-11-22 01:14:15.000000000 +0300 ++++ Source/Net/Server.cpp 2015-03-27 01:30:50.356180000 +0300 +@@ -1,9 +1,7 @@ + #include "Server.h" + +-Server::Server() ++Server::Server() : NetCommon() + { +- NetCommon::NetCommon(); +- + memset((char *) &local_sock, 0, sizeof(local_sock)); + local_sock.sin_family = AF_INET; + local_sock.sin_port = htons(PORT); Property changes on: head/games/blackshadeselite/files/patch-Source_Net_Server.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property