diff options
Diffstat (limited to 'gst/vbidec')
-rw-r--r-- | gst/vbidec/vbiscreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/vbidec/vbiscreen.c b/gst/vbidec/vbiscreen.c index 189591f13..bc315587a 100644 --- a/gst/vbidec/vbiscreen.c +++ b/gst/vbidec/vbiscreen.c @@ -506,7 +506,7 @@ void vbiscreen_set_current_cell( vbiscreen_t *vs, char text ) int base; if( !vs ) return; base = ( ( vs->top_of_screen + vs->cury ) % ( 2 * ROWS ) ) * COLS; - if( isprint( text ) ) + if( g_ascii_isprint( text ) ) vs->text[ base + vs->curx + vs->indent ] = text; else vs->text[ base + vs->curx + vs->indent ] = ' '; |