path to UTF8

configfile split
This commit is contained in:
doitux
2007-04-18 00:11:24 +00:00
parent 27cd08ccb0
commit 2b94ce958f
33 changed files with 565 additions and 498 deletions
+4 -4
View File
@@ -29,10 +29,10 @@
using namespace std;
Session::Session(GuiInterface *g)
: actualGameID(0), myNetClient(0), myNetServer(0), actualGame(0), myGui(g)
Session::Session()
: actualGameID(0), myNetClient(0), myNetServer(0), actualGame(0), myGui(0)
{
myConfig = new ConfigFile;
myConfig = new ConfigFile(getConfigPath());
}
@@ -49,7 +49,7 @@ void Session::startGame(int qP, int sC, int sB) {
actualGameID++;
actualGame = new Game(myConfig, myGui, qP, sC, sB, actualGameID);
actualGame = new Game(this, myGui, qP, sC, sB, actualGameID);
}
void Session::deleteGame() {