summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-03-25 07:25:34 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-03-25 07:25:34 +0000
commit084f74d5f2c42d6fca9776b40da819ff74cd14af (patch)
treea5ebcd12506fa4122789347a5e893d8e3dde9195
parent48543f11251e811ac1b5265b5c240fb12225ec42 (diff)
downloadnavit-svn-084f74d5f2c42d6fca9776b40da819ff74cd14af.tar.gz
Fix:Core:Don't destroy debug on android since the main loop exits there immediately
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit/navit@3085 ffa7fe5e-494d-0410-b361-a75ebd5db220
-rw-r--r--start_real.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/start_real.c b/start_real.c
index a1cbc1fd..b755dab6 100644
--- a/start_real.c
+++ b/start_real.c
@@ -177,6 +177,8 @@ int main_real(int argc, char **argv)
}
event_main_loop_run();
+#ifndef HAVE_API_ANDROID
debug_finished();
+#endif
return 0;
}