From 0182d71a49e5f36fbebe62c88464c866f3ba69d0 Mon Sep 17 00:00:00 2001 From: tasn Date: Thu, 12 May 2011 08:38:24 +0000 Subject: [PATCH] Evas font-engine: Fix usage of font cache (= -> ==). git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@59344 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/canvas/evas_font_dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/canvas/evas_font_dir.c b/src/lib/canvas/evas_font_dir.c index 4d94723..79b9b59 100644 --- a/src/lib/canvas/evas_font_dir.c +++ b/src/lib/canvas/evas_font_dir.c @@ -329,7 +329,7 @@ evas_font_load(Evas *evas, const char *name, const char *source, int size) if (((!source) && (!fd->source)) || ((source) && (fd->source) && (!strcmp(source, fd->source)))) { - if ((size == fd->size) && (wanted_rend = fd->wanted_rend)) + if ((size == fd->size) && (wanted_rend == fd->wanted_rend)) { fonts_cache = eina_list_promote_list(fonts_cache, l); fd->ref++; @@ -354,7 +354,7 @@ evas_font_load(Evas *evas, const char *name, const char *source, int size) if (((!source) && (!fd->source)) || ((source) && (fd->source) && (!strcmp(source, fd->source)))) { - if ((size == fd->size) && (wanted_rend = fd->wanted_rend)) + if ((size == fd->size) && (wanted_rend == fd->wanted_rend)) { fonts_zero = eina_list_remove_list(fonts_zero, l); fonts_cache = eina_list_prepend(fonts_cache, fd); -- 2.7.4