summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/max80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/max80.cpp')
-rw-r--r--src/mame/drivers/max80.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/max80.cpp b/src/mame/drivers/max80.cpp
index 2fd5458806c..d1d79a506ba 100644
--- a/src/mame/drivers/max80.cpp
+++ b/src/mame/drivers/max80.cpp
@@ -332,7 +332,7 @@ u8 max80_state::keyboard_r(offs_t offset)
u8 max80_state::fdc_status_r(offs_t offset)
{
- u8 data = 0xfc | m_fdc_drq | (m_fdc_int << 1);
+ u8 data = 0xfc | int(m_fdc_drq) | (m_fdc_int << 1);
return data;
}