summaryrefslogtreecommitdiff
path: root/apps/examples/nxhello
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/nxhello')
-rw-r--r--apps/examples/nxhello/nxhello_bkgd.c2
-rw-r--r--apps/examples/nxhello/nxhello_main.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/nxhello/nxhello_bkgd.c b/apps/examples/nxhello/nxhello_bkgd.c
index 3b609d1f6..09beac952 100644
--- a/apps/examples/nxhello/nxhello_bkgd.c
+++ b/apps/examples/nxhello/nxhello_bkgd.c
@@ -248,7 +248,7 @@ static void nxhello_center(FAR struct nxgl_point_s *pos,
*/
pos->x = (g_nxhello.xres - width) / 2;
- pos->y = (g_nxhello.yres - fbm->metric.height) / 2;
+ pos->y = (g_nxhello.yres - fontset->mxheight) / 2;
}
/****************************************************************************
diff --git a/apps/examples/nxhello/nxhello_main.c b/apps/examples/nxhello/nxhello_main.c
index 4f6701aa5..38c2e52c2 100644
--- a/apps/examples/nxhello/nxhello_main.c
+++ b/apps/examples/nxhello/nxhello_main.c
@@ -211,7 +211,7 @@ static inline int nxhello_initialize(void)
# define MAIN_NAME_STRING "nxhello_main"
#else
# define MAIN_NAME user_start
-# define MAIN_NAME_STRING "user_start"
+# define MAIN_NAME_STRING MAIN_NAME_STRING ""
#endif
int MAIN_NAME(int argc, char *argv[])
@@ -235,7 +235,7 @@ int MAIN_NAME(int argc, char *argv[])
g_nxhello.hfont = nxf_getfonthandle(NXFONT_DEFAULT);
if (!g_nxhello.hfont)
{
- message("user_start: Failed to get font handle: %d\n", errno);
+ message(MAIN_NAME_STRING ": Failed to get font handle: %d\n", errno);
g_nxhello.code = NXEXIT_FONTOPEN;
goto errout;
}