diff options
author | 2017-08-11 12:05:29 +1000 | |
---|---|---|
committer | 2017-08-11 12:05:29 +1000 | |
commit | 378fe3d0d0863188b18783172f36d3116b96734b (patch) | |
tree | 30c322868d01c2a8282e5206420a2b65ca740009 /src/frontend/mame/ui/utils.h | |
parent | cb7a04174fa62761853a825c12fb261ea8854d32 (diff) |
MSVC is a trouxa that doesn't like constructor inheritance with templated base (nw)
Diffstat (limited to 'src/frontend/mame/ui/utils.h')
-rw-r--r-- | src/frontend/mame/ui/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/utils.h b/src/frontend/mame/ui/utils.h index 7018007eaee..394bcc86244 100644 --- a/src/frontend/mame/ui/utils.h +++ b/src/frontend/mame/ui/utils.h @@ -272,7 +272,7 @@ enum HOVER_RPANEL_ARROW, HOVER_LPANEL_ARROW, HOVER_FILTER_FIRST, - HOVER_FILTER_LAST = HOVER_FILTER_FIRST + std::max<unsigned>(ui::machine_filter::COUNT, ui::software_filter::COUNT), + HOVER_FILTER_LAST = HOVER_FILTER_FIRST + std::max<int>(ui::machine_filter::COUNT, ui::software_filter::COUNT), HOVER_RP_FIRST, HOVER_RP_LAST = HOVER_RP_FIRST + 1 + RP_LAST, HOVER_INFO_TEXT |