From 1d5a30bdb022bbda1083c186e2ea4c3fb8be8b55 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 25 Aug 2003 16:24:24 +0000 Subject: [PATCH] reword warning to make it less confusing --- panda/src/text/dynamicTextFont.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/text/dynamicTextFont.cxx b/panda/src/text/dynamicTextFont.cxx index 6009bd2d30..0c009335a3 100644 --- a/panda/src/text/dynamicTextFont.cxx +++ b/panda/src/text/dynamicTextFont.cxx @@ -129,8 +129,8 @@ DynamicTextFont(const Filename &font_filename, int face_index) { << *this << " has no default Unicode charmap.\n"; if (_face->num_charmaps > 1) { text_cat.warning() - << "Choosing arbitrary charmap of " << _face->num_charmaps - << ".\n"; + << "Arbitrarily choosing first of " + << _face->num_charmaps << " charmaps.\n"; } FT_Set_Charmap(_face, _face->charmaps[0]); }