From 3725577aace6aac3d3021c4ad770635f7fe44cb7 Mon Sep 17 00:00:00 2001 From: Henrique Santiago Date: Thu, 19 Jan 2012 14:02:13 -0200 Subject: [PATCH] little change to support mapeditor again --- modules/client_tibiafiles | 2 +- src/otclient/otclient.cpp | 2 +- src/otclient/otclient.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/client_tibiafiles b/modules/client_tibiafiles index 9beb17da..dd648e14 160000 --- a/modules/client_tibiafiles +++ b/modules/client_tibiafiles @@ -1 +1 @@ -Subproject commit 9beb17daaeb170c127c39c5a5e4feb9d95ebed92 +Subproject commit dd648e1431171bffe091b748744395780df7eba1 diff --git a/src/otclient/otclient.cpp b/src/otclient/otclient.cpp index 56e91a0a..087e4dde 100644 --- a/src/otclient/otclient.cpp +++ b/src/otclient/otclient.cpp @@ -25,7 +25,7 @@ #include "core/game.h" #include -OTClient::OTClient() : Application(Otc::AppCompactName) +OTClient::OTClient(const std::string& appName) : Application(appName) { } diff --git a/src/otclient/otclient.h b/src/otclient/otclient.h index 1401ee17..42fc9879 100644 --- a/src/otclient/otclient.h +++ b/src/otclient/otclient.h @@ -29,7 +29,7 @@ class OTClient : public Application { public: - OTClient(); + OTClient(const std::string &appName = Otc::AppCompactName); void init(const std::vector& args); void registerLuaFunctions(); };