diff options
author | Michael Lutz <michi@icosahedron.de> | 2021-01-06 22:56:44 +0100 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2021-02-13 20:09:14 +0100 |
commit | 5ad16409847a17534389054a1b7f5fb83703fb4d (patch) | |
tree | 83fc638e56b16c9fa561ed3551e2d83d7c701dfa /src/fontcache.cpp | |
parent | 2b0200d4297a67916cf3b955adc474e88e327cf0 (diff) | |
download | openttd-5ad16409847a17534389054a1b7f5fb83703fb4d.tar.xz |
Codechange: Make OS font handle of the FontCache read-only.
Diffstat (limited to 'src/fontcache.cpp')
-rw-r--r-- | src/fontcache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontcache.cpp b/src/fontcache.cpp index 0b2764aab..9cdc0b975 100644 --- a/src/fontcache.cpp +++ b/src/fontcache.cpp @@ -756,7 +756,7 @@ public: virtual GlyphID MapCharToGlyph(WChar key); virtual const char *GetFontName() { return WIDE_TO_MB(this->logfont.lfFaceName); } virtual bool IsBuiltInFont() { return false; } - virtual void *GetOSHandle() { return &this->logfont; } + virtual const void *GetOSHandle() { return &this->logfont; } }; |