summaryrefslogtreecommitdiffstats
path: root/src/app/app.cpp
diff options
context:
space:
mode:
authorErihel <erihel@gmail.com>2012-12-16 13:15:31 -0800
committerErihel <erihel@gmail.com>2012-12-16 13:15:31 -0800
commit6bd37341dfe2eb382d654f34a2b89db7fa30d8c2 (patch)
tree181b0059363cd9e72af437468c40b7c1b7d7038f /src/app/app.cpp
parent0b78ebd0f79fa8dbdb69f748551b83cf3f1b947d (diff)
parentc190c3efaec57dcb550a57a56538010ff5e2b532 (diff)
downloadcolobot-6bd37341dfe2eb382d654f34a2b89db7fa30d8c2.tar.gz
colobot-6bd37341dfe2eb382d654f34a2b89db7fa30d8c2.tar.bz2
colobot-6bd37341dfe2eb382d654f34a2b89db7fa30d8c2.zip
Merge pull request #92 from OdyX/dev-default-datadir
Set a default datadir, in sync with the data installation path.
Diffstat (limited to 'src/app/app.cpp')
-rw-r--r--src/app/app.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/app.cpp b/src/app/app.cpp
index 751ff21..980ecc1 100644
--- a/src/app/app.cpp
+++ b/src/app/app.cpp
@@ -15,6 +15,7 @@
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.
+#include "common/config.h"
#include "app/app.h"
@@ -130,7 +131,7 @@ CApplication::CApplication()
m_mouseButtonsState = 0;
m_trackedKeys = 0;
- m_dataPath = "./data";
+ m_dataPath = CBOT_DEFAULT_DATADIR;
m_language = LANGUAGE_ENV;