From 1f5db2d7dbd46d030cdc3cb66aec50cad5b1761d Mon Sep 17 00:00:00 2001 From: Jeremie Roy Date: Tue, 23 Apr 2013 17:23:00 +0200 Subject: [PATCH] fix typo in debug text --- examples/11-fontsdf/fontsdf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/11-fontsdf/fontsdf.cpp b/examples/11-fontsdf/fontsdf.cpp index d7fc7d9c..a1c4a66f 100644 --- a/examples/11-fontsdf/fontsdf.cpp +++ b/examples/11-fontsdf/fontsdf.cpp @@ -116,8 +116,8 @@ int _main_(int /*_argc*/, char** /*_argv*/) // Use debug font to print information about this example. bgfx::dbgTextClear(); - bgfx::dbgTextPrintf(0, 1, 0x4f, "bgfx/examples/11-fontdfs"); - bgfx::dbgTextPrintf(0, 2, 0x6f, "Description: Use a single distance field font to render text of different size."); + bgfx::dbgTextPrintf(0, 1, 0x4f, "bgfx/examples/11-fontsdf"); + bgfx::dbgTextPrintf(0, 2, 0x6f, "Description: Use a single distance field font to render text of various size."); bgfx::dbgTextPrintf(0, 3, 0x0f, "Frame: % 7.3f[ms]", double(frameTime)*toMs); float at[3] = { 0, 0, 0.0f };