summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xbox.cpp')
-rw-r--r--src/mame/machine/xbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/xbox.cpp b/src/mame/machine/xbox.cpp
index 3f3a364b848..9c28dfad770 100644
--- a/src/mame/machine/xbox.cpp
+++ b/src/mame/machine/xbox.cpp
@@ -36,7 +36,7 @@ bool xbox_base_state::find_bios_hash(int bios, uint32_t &crc32)
{
if (ROMENTRY_ISFILE(re))
{
- if (ROM_GETBIOSFLAGS(re) == (bios + 1))
+ if (ROM_GETBIOSFLAGS(re) == (uint32_t)(bios + 1))
{
const std::string &h = re.hashdata();
util::hash_collection hc(h.c_str());