From 3b212fdb51c4933bbc7eeb827f514cd1e120b3c5 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Thu, 3 May 2012 23:25:00 +0200 Subject: GRAPHICS: Remove unused function ftFloor26_6 in ttf.cpp. --- graphics/fonts/ttf.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'graphics/fonts/ttf.cpp') diff --git a/graphics/fonts/ttf.cpp b/graphics/fonts/ttf.cpp index 7f5c616710..96241e923c 100644 --- a/graphics/fonts/ttf.cpp +++ b/graphics/fonts/ttf.cpp @@ -43,10 +43,6 @@ namespace Graphics { namespace { -inline int ftFloor26_6(FT_Pos x) { - return x / 64; -} - inline int ftCeil26_6(FT_Pos x) { return (x + 63) / 64; } -- cgit v1.2.3