summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/graphics/traveler/Kconfig1
-rwxr-xr-xapps/graphics/traveler/src/trv_main.c6
2 files changed, 6 insertions, 1 deletions
diff --git a/apps/graphics/traveler/Kconfig b/apps/graphics/traveler/Kconfig
index 3feee99bb..e938ec742 100644
--- a/apps/graphics/traveler/Kconfig
+++ b/apps/graphics/traveler/Kconfig
@@ -8,6 +8,7 @@ if GRAPHICS_TRAVELER
config GRAPHICS_TRAVELER_PERFMON
bool "Performance monitor game"
default y
+ depends on NX && FS_READABLE && !NX_LCDDRIVER
---help---
Enable or disable performance monitoring instrumentation and output.
diff --git a/apps/graphics/traveler/src/trv_main.c b/apps/graphics/traveler/src/trv_main.c
index 6f74055ba..604ff2975 100755
--- a/apps/graphics/traveler/src/trv_main.c
+++ b/apps/graphics/traveler/src/trv_main.c
@@ -149,7 +149,11 @@ static double trv_current_time(void)
* Description:
****************************************************************************/
-int main(int argc, char *argv[])
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char *argv[])
+#else
+int traveler_main(int argc, char *argv[])
+#endif
{
FAR struct trv_graphics_info_s ginfo;
struct trv_framebuffer_s frame;