diff options
author | 2016-07-31 11:50:20 +0200 | |
---|---|---|
committer | 2016-07-31 14:41:02 +0200 | |
commit | 9667c6a8cce1829a7321dde67bd0287c73234386 (patch) | |
tree | f3665957d557cb18728a40e75f7d9f2341aaff1d /src/emu/rendfont.h | |
parent | 69ac4affc86caac51ff9720083ed128dabdb932f (diff) |
std::min and std:max instead of MIN and MAX, also some more macros converted to inline functions (nw)
Diffstat (limited to 'src/emu/rendfont.h')
-rw-r--r-- | src/emu/rendfont.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/rendfont.h b/src/emu/rendfont.h index b2ec2f12568..88445510a45 100644 --- a/src/emu/rendfont.h +++ b/src/emu/rendfont.h @@ -109,7 +109,7 @@ private: // constants static const int CACHED_CHAR_SIZE = 12; static const int CACHED_HEADER_SIZE = 16; - static const int CACHED_BDF_HASH_SIZE = 1024; + static const UINT64 CACHED_BDF_HASH_SIZE = 1024; }; void convert_command_glyph(std::string &s); |