little change to support mapeditor again

This commit is contained in:
Henrique Santiago 2012-01-19 14:02:13 -02:00
parent ad310e2baf
commit 3725577aac
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 9beb17daaeb170c127c39c5a5e4feb9d95ebed92 Subproject commit dd648e1431171bffe091b748744395780df7eba1

View File

@ -25,7 +25,7 @@
#include "core/game.h" #include "core/game.h"
#include <framework/core/resourcemanager.h> #include <framework/core/resourcemanager.h>
OTClient::OTClient() : Application(Otc::AppCompactName) OTClient::OTClient(const std::string& appName) : Application(appName)
{ {
} }

View File

@ -29,7 +29,7 @@
class OTClient : public Application class OTClient : public Application
{ {
public: public:
OTClient(); OTClient(const std::string &appName = Otc::AppCompactName);
void init(const std::vector<std::string>& args); void init(const std::vector<std::string>& args);
void registerLuaFunctions(); void registerLuaFunctions();
}; };