Browse Source

text-freetype2: Check if using file with from_file

jp9000 11 years ago
parent
commit
50b80925e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/text-freetype2/text-freetype2.c

+ 1 - 1
plugins/text-freetype2/text-freetype2.c

@@ -205,7 +205,7 @@ static void ft2_video_tick(void *data, float seconds)
 {
 	struct ft2_source *srcdata = data;
 	if (srcdata == NULL) return;
-	if (srcdata->text_file == NULL) return;
+	if (!srcdata->from_file) return;
 
 	if (os_gettime_ns() - srcdata->last_checked >= 1000000000) {
 		time_t t = get_modified_timestamp(srcdata->text_file);