diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-26 11:06:39 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-26 11:06:39 +0000 |
commit | 28bb8ccf2791599f24ec705c6075a747d7f10030 (patch) | |
tree | 14b1ea6d20fe7c1911ca662f7ad4ca665084ba7f /src/xine-engine/xine_interface.c | |
parent | d042d5ac0e7ba8d77136c465a94c5683b16a0c9a (diff) | |
download | xine-lib-28bb8ccf2791599f24ec705c6075a747d7f10030.tar.gz xine-lib-28bb8ccf2791599f24ec705c6075a747d7f10030.tar.bz2 |
- font encoding cleanup patch by Frantisek Dvorak
- xinefonts use unicode now
- fix endianess in xine-fontconv.c
- public render text api uses locale
CVS patchset: 4486
CVS date: 2003/03/26 11:06:39
Diffstat (limited to 'src/xine-engine/xine_interface.c')
-rw-r--r-- | src/xine-engine/xine_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c index 430776782..72167bd12 100644 --- a/src/xine-engine/xine_interface.c +++ b/src/xine-engine/xine_interface.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_interface.c,v 1.45 2003/03/08 20:25:52 guenter Exp $ + * $Id: xine_interface.c,v 1.46 2003/03/26 11:06:59 miguelfreitas Exp $ * * convenience/abstraction layer, functions to implement * libxine's public interface @@ -565,7 +565,7 @@ void xine_osd_draw_rect(xine_osd_t *this, int x1, int y1, int x2, int y2, int co } void xine_osd_draw_text(xine_osd_t *this, int x1, int y1, const char *text, int color_base) { - this->osd.renderer->render_text(&this->osd, x1, y1, text, color_base); + this->osd.renderer->render_text(&this->osd, x1, y1, text, NULL, color_base); } void xine_osd_get_text_size(xine_osd_t *this, const char *text, int *width, int *height) { |