aboutsummaryrefslogtreecommitdiff
path: root/graphics/fonts/ttf.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2012-05-03 23:25:00 +0200
committerJohannes Schickel2012-05-03 23:25:00 +0200
commit3b212fdb51c4933bbc7eeb827f514cd1e120b3c5 (patch)
treee298a9634fc292fa36c26e10a8d7c32c2ae9a0ec /graphics/fonts/ttf.cpp
parentb96143c1802b619553e476ad7a5a1eedeea0c768 (diff)
downloadscummvm-rg350-3b212fdb51c4933bbc7eeb827f514cd1e120b3c5.tar.gz
scummvm-rg350-3b212fdb51c4933bbc7eeb827f514cd1e120b3c5.tar.bz2
scummvm-rg350-3b212fdb51c4933bbc7eeb827f514cd1e120b3c5.zip
GRAPHICS: Remove unused function ftFloor26_6 in ttf.cpp.
Diffstat (limited to 'graphics/fonts/ttf.cpp')
-rw-r--r--graphics/fonts/ttf.cpp4
1 files changed, 0 insertions, 4 deletions
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;
}