aboutsummaryrefslogtreecommitdiff
path: root/graphics/fonts/ttf.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-07-30 21:31:14 +0200
committerJohannes Schickel2012-08-09 03:13:00 +0200
commitb4196e48b16c458ef6564a051495525ff5a282f0 (patch)
tree6d02c90d9c874789b67ce3081998b219cb9624f2 /graphics/fonts/ttf.h
parent5521261fdebb9388026457d7c2a92ad6abc149f1 (diff)
downloadscummvm-rg350-b4196e48b16c458ef6564a051495525ff5a282f0.tar.gz
scummvm-rg350-b4196e48b16c458ef6564a051495525ff5a282f0.tar.bz2
scummvm-rg350-b4196e48b16c458ef6564a051495525ff5a282f0.zip
GRAPHICS: Add a DPI parameter to loadTTFFont.
Will be used by WME.
Diffstat (limited to 'graphics/fonts/ttf.h')
-rw-r--r--graphics/fonts/ttf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/fonts/ttf.h b/graphics/fonts/ttf.h
index ec7dbe04ef..e1464b1f45 100644
--- a/graphics/fonts/ttf.h
+++ b/graphics/fonts/ttf.h
@@ -32,7 +32,7 @@
namespace Graphics {
class Font;
-Font *loadTTFFont(Common::SeekableReadStream &stream, int size, bool monochrome = false, const uint32 *mapping = 0);
+Font *loadTTFFont(Common::SeekableReadStream &stream, int size, uint dpi = 0, bool monochrome = false, const uint32 *mapping = 0);
void shutdownTTF();