From: Perttu Ahola Date: Sat, 16 Jun 2012 18:36:54 +0000 (+0300) Subject: Fix build error due to DEBUGFILE X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=9e21204f8b25025fc0f0057cb68d8b2b2b13c71a;p=zefram%2Fminetest%2Fminetest_engine.git Fix build error due to DEBUGFILE --- diff --git a/src/main.cpp b/src/main.cpp index 928b8784..3c9184e2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -877,8 +877,9 @@ int main(int argc, char *argv[]) init_gettext((porting::path_share+DIR_DELIM+".."+DIR_DELIM+"locale").c_str()); // Initialize debug streams +#define DEBUGFILE "debug.txt" #ifdef RUN_IN_PLACE - std::string logfile = "debug.txt"; + std::string logfile = DEBUGFILE; #else std::string logfile = porting::path_user+DIR_DELIM+DEBUGFILE; #endif