summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/rendfont.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-07-31 11:50:20 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-07-31 14:41:02 +0200
commit9667c6a8cce1829a7321dde67bd0287c73234386 (patch)
treef3665957d557cb18728a40e75f7d9f2341aaff1d /src/emu/rendfont.h
parent69ac4affc86caac51ff9720083ed128dabdb932f (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.h2
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);