aboutsummaryrefslogtreecommitdiffstats
path: root/fb-gui.c
diff options
context:
space:
mode:
authorStéphane Aulery <lkppo@free.fr>2012-01-28 21:54:50 +0100
committerGerd Hoffmann <kraxel@redhat.com>2012-02-10 14:11:44 +0100
commit889ce8da9f5cb079f314508ea6b5f5a3080b50f8 (patch)
tree6208b866890439d8894f23f26cad62ea5ea1c0f4 /fb-gui.c
parentf1c6f2c00d88f1cdea6be5ac09e2001f547dc55a (diff)
downloadfbida-889ce8da9f5cb079f314508ea6b5f5a3080b50f8.tar.gz
Remove unused variable: scalable
Diffstat (limited to 'fb-gui.c')
-rw-r--r--fb-gui.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fb-gui.c b/fb-gui.c
index f49d451..0243700 100644
--- a/fb-gui.c
+++ b/fb-gui.c
@@ -487,14 +487,13 @@ int shadow_draw_string(FT_Face face, int x, int y, wchar_t *str, int align)
FT_BitmapGlyph bit;
size_t len;
int i,ng,pos;
- int kerning,scalable;
+ int kerning;
len = wcslen(str);
glyphs = malloc(sizeof(*glyphs) * len);
memset(glyphs,0,sizeof(*glyphs) * len);
kerning = FT_HAS_KERNING(face);
- scalable = FT_IS_SCALABLE(face);
pgi = 0;
for (ng = 0, pos = 0, i = 0; str[i] != 0; i++) {