From d5f2bc911f2a688c6c002e7c86764169293f8f04 Mon Sep 17 00:00:00 2001 From: Marek Moeckel Date: Sun, 9 Jan 2005 18:04:30 +0000 Subject: [PATCH] datadir finding fix part 2 SVN-Revision: 2275 --- lib/app/setup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app/setup.cpp b/lib/app/setup.cpp index af33a9804..c7972c470 100644 --- a/lib/app/setup.cpp +++ b/lib/app/setup.cpp @@ -325,7 +325,7 @@ void Setup::directories() datadir = exedir + "./data/"; // SuperTux run from source dir if (access(datadir.c_str(), F_OK) != 0) { - datadir = exedir + "../../data/"; //SuperTux run from source dir (with libtool script) + datadir = exedir + "../../../../data/"; //SuperTux run from source dir (with libtool script) if (access(datadir.c_str(), F_OK) != 0) { -- 2.11.0